How to make color effect when pointing to some banner Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
4 posters

    How to make color effect when pointing to some banner

    avatar
    moi_lolito
    Forumember


    Posts : 92
    Reputation : 1
    Language : English

    How to make color effect when pointing to some banner Empty How to make color effect when pointing to some banner

    Post by moi_lolito Thu Mar 28 2013, 21:53

    One more question ^^

    Here I post 2 images, the first one is the normal view of the image, the 2nd one is when I point it with the mouse to open the section, it's becomes darker.

    How is it possible to reach this effect? It can be darker or lighter or red or any other color, how can I make the same effect for my banners?

    Thanks in advance Smile
    Sir Chivas™
    Sir Chivas™
    Helper
    Helper


    Male Posts : 6983
    Reputation : 457
    Language : EN, FR, ES
    Location : || CSS || HTML || Graphics Designs || Support ||

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by Sir Chivas™ Thu Mar 28 2013, 21:58

    Hi,

    Are you speaking of a hover effect? You want it to work with images or color?
    avatar
    moi_lolito
    Forumember


    Posts : 92
    Reputation : 1
    Language : English

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by moi_lolito Thu Mar 28 2013, 22:03

    http://www.duelacademy.net/forum

    you can see it here, just point the mouse to any section and it will change to another color, I would like to do something similar, I'm not sure if this is called hover effect.
    Sir Chivas™
    Sir Chivas™
    Helper
    Helper


    Male Posts : 6983
    Reputation : 457
    Language : EN, FR, ES
    Location : || CSS || HTML || Graphics Designs || Support ||

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by Sir Chivas™ Thu Mar 28 2013, 22:15

    Just the banner or any other images? Please provide your forum URL. Thank you.


    Add this to any image you're going to add that allows HTML: (Description)
    Code:
    <img src="/urlofimage" alt="" style="float:left" class="hover">


    Add this inside your CSS: ACP >> Display >> Colors >> CSS
    Code:
    .hover:hover {
    filter: alpha(opacity=50);
    -moz-opacity: 0.65;
    opacity: 0.55;
    }
    .hover {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 1.0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    }
    avatar
    moi_lolito
    Forumember


    Posts : 92
    Reputation : 1
    Language : English

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by moi_lolito Sun Mar 31 2013, 15:23

    [quote="Sir Chivas™"]Add this to any image you're going to add that allows HTML: (Description)
    Code:
    <img src="/urlofimage" alt="" style="float:left" class="hover">

    what should I write in alt " "?

    That's my web, I want this to all the banners http://testforfuture.motionforum.net/

    Another question also, is it possible to make for all the banners of all sections a glow effect that appears when a new message is posted there?


    Raziel21
    Raziel21
    Forumember


    Male Posts : 86
    Reputation : 0
    Language : Serbian, English, Russian, Italiano, Espanol
    Location : Belgrade, Serbia

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by Raziel21 Mon Apr 01 2013, 05:04

    Hi, is it possible to make

    Code:
    <img src="/urlofimage" alt="" style="float:left" class="hover">

    into

    Code:
    <img src="/urlofimage" alt="" style="float:center" class="hover">

    or

    Code:
    <img src="/urlofimage" alt="" style="float:none" class="hover">

    or should we just add
    Code:
    <div style="text-align: center;">
    before the img tags?!

    Also, how to replace links into images (or rather make images to act as links) as seen on that forum ?
    E-Mark
    E-Mark
    Active Poster


    Male Posts : 1412
    Reputation : 169
    Language : English
    Location : Bitcoin

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by E-Mark Mon Apr 01 2013, 07:58

    Float only works with property, left, right and none. Center is invalid. Smile



    And for moi, if you want an image to use hover, just add this inside the image tag:
    Code:
    class="hover"


    Example:
    Code:
    <img src="linkoftheimage" alt="" class="hover" />

    Don't mind the alt, it's nothing.
    You can just remove the alt if you want to.
    Raziel21
    Raziel21
    Forumember


    Male Posts : 86
    Reputation : 0
    Language : Serbian, English, Russian, Italiano, Espanol
    Location : Belgrade, Serbia

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by Raziel21 Mon Apr 01 2013, 10:04

    Alright, got it all to work in this format

    Code:
    <a href="INSERTNAVIGATIONLINK" target="_blank"><div style="text-align: center;"><img src="IMGLINK" class="hover">
    </a>

    Text align may change the position of the image to the center, which is good since hover option didn't work properly for me (I don't want images on the left side).

    Ty
    avatar
    moi_lolito
    Forumember


    Posts : 92
    Reputation : 1
    Language : English

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by moi_lolito Mon Apr 01 2013, 10:12

    Ok, thanks, I got the hover effect!

    Now what about my other question, is it possible to make for all the banners of all sections a glow effect that appears when a new message is posted there?

    Here I post a post more or less an example of what I'm talking about

    How to make color effect when pointing to some banner Glow10

    On the left picture is a simple section with no new posts, and when a new post or message is written there, I would like it to have a glow effect like that one on the right. Is it possible to do that?
    E-Mark
    E-Mark
    Active Poster


    Male Posts : 1412
    Reputation : 169
    Language : English
    Location : Bitcoin

    How to make color effect when pointing to some banner Empty Re: How to make color effect when pointing to some banner

    Post by E-Mark Mon Apr 01 2013, 10:24

    I think that's not possible. :S