hover over image 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.
2 posters

    hover over image

    avatar
    venu238
    Forumember


    Male Posts : 109
    Reputation : 0
    Language : English
    Location : Hyderabad

    hover over image Empty hover over image

    Post by venu238 May 21st 2011, 12:57 pm

    I'm using Multiforums in my phpbb2

    I want code to get an hover border over an image..
    here is my
    forum
    Mike
    Mike
    Hyperactive


    Male Posts : 4255
    Reputation : 471
    Language : English, HTML, CSS
    Location : Loveland, Colorado

    hover over image Empty Re: hover over image

    Post by Mike May 21st 2011, 6:37 pm

    Here's an example, customize yours.

    Code:
    <style type="text/css">

    randomimage hover {
    -moz-box-shadow: 3px 3px 5px #000;
        -webkit-box-shadow: 3px 3px 5px #000;
        box-shadow: 3px 3px 5px #000;
    }

    Then for your image put:

    Code:
    <img src="src" id="randomimage">

    this should help. You may need to cancel out some images and then do this in the templates
    avatar
    venu238
    Forumember


    Male Posts : 109
    Reputation : 0
    Language : English
    Location : Hyderabad

    hover over image Empty Re: hover over image

    Post by venu238 May 22nd 2011, 3:31 am

    Drogba921 wrote:Here's an example, customize yours.

    Code:
    <style type="text/css">

    randomimage hover {
    -moz-box-shadow: 3px 3px 5px #000;
        -webkit-box-shadow: 3px 3px 5px #000;
        box-shadow: 3px 3px 5px #000;
    }

    Then for your image put:

    Code:
    <img src="src" id="randomimage">

    this should help. You may need to cancel out some images and then do this in the templates
    I did exactly what you said..but i didn't got any border

    "You may need to cancel out some images and then do this in the templates" - how to do this?