Hovering for own navigation bar buttons? 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.

    Hovering for own navigation bar buttons?

    avatar
    Bubletan
    Forumember


    Posts : 54
    Reputation : 2
    Language : Finnish

    Hovering for own navigation bar buttons? Empty Hovering for own navigation bar buttons?

    Post by Bubletan Sat May 05, 2012 11:30 am

    I have one html page and I added the button in nav bar. Is there a way to make the button hover?

    So I have all my other buttons hovering but that Confused
    avatar
    Guest
    Guest


    Hovering for own navigation bar buttons? Empty Re: Hovering for own navigation bar buttons?

    Post by Guest Sat May 05, 2012 4:46 pm

    Hi!

    Add to CSS Stylesheet:
    Code:
    a.mainmenu{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
    }

    a.mainmenu:hover{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -khtml-opacity: 1.0;
    -moz-opacity: 1.0;
    opacity: 1.0;
    }
    avatar
    Bubletan
    Forumember


    Posts : 54
    Reputation : 2
    Language : Finnish

    Hovering for own navigation bar buttons? Empty Re: Hovering for own navigation bar buttons?

    Post by Bubletan Sun May 06, 2012 7:45 am

    No, I mean the hover button, I have only images on navbar and I would like to get my own button to my html page have an hover effect Smile