[PHPBB2] forum categories hover colours 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

    [PHPBB2] forum categories hover colours

    Donal
    Donal
    Forumember


    Male Posts : 467
    Reputation : 3
    Language : English
    Location : England

    Solved [PHPBB2] forum categories hover colours

    Post by Donal April 2nd 2012, 10:57 pm

    forum: www.primalevolution.forumotion.com
    problem: [PHPBB2] forum categories hover colours 20b25b9

    1: is what I want it to be but it managed to be there only for one category.

    2: how do i remove this one and replace it with the blue?

    code I used:
    Code:
    /* Links */

    /* a:link,a:active,a:visited {
        color : #ffffff;
        }
     */
    a:link{
        color: #ffffff;
        }
    a:visited{
        color: #78aace;
        }
    a:active{
        color: #ffffff }
    a:hover{
        text-decoration: underline !important;
        color : #78aace;
        }
    and

    Code:
    a { text-decoration: none; }

    a:link, a:active, a:hover, a:visited {text-decoration:none;}

    .forumtitle:hover {
    text-decoration : none !important;
    }

    a.forumtitle:hover {
    color: #78aace;
    text-decoration: none;
    }
    a:hover{text-decoration: none !important;}
    a {text-decoration: none !important;}
    a:link {text-decoration: none;}
    a:visited {text-decoration: none;}

    thanks in advance. This is self explanatory I suppose.
    Mati
    Mati
    Active Poster


    Posts : 1932
    Reputation : 333
    Language : HTML, CSS & JavaScript
    Location : Forum Services

    Solved Re: [PHPBB2] forum categories hover colours

    Post by Mati April 2nd 2012, 11:07 pm

    Hey, Donal

    Add this in your css

    Code:
    a.forumlink:visited {
        color: #78aace;
    }
    Donal
    Donal
    Forumember


    Male Posts : 467
    Reputation : 3
    Language : English
    Location : England

    Solved Re: [PHPBB2] forum categories hover colours

    Post by Donal April 2nd 2012, 11:10 pm

    thanks mate!