• Hi i want to change the hovered color of the blog sidebar text.

    if you now hover over it it turns yellow.

    I have found the style with firebug , but the thing is that the style is not in the css file , it in blog.

    but i dont have a blog.php in my dashboard.

    Where is this blog file then ?

    heres a screenshot , hope you can help me.

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter giorgiomartini

    (@giorgiomartini)

    Please someone ?

    Thread Starter giorgiomartini

    (@giorgiomartini)

    Please ?

    I’d be able to help more with a link to the site…..

    Use Firebug or Colorzilla Firefox addon to find out Hexa color code. Now use your WordPress theme editor after uploading theme. Click to edit CSS file. Press Ctrl+F and search for the color code of yellow . Now you can change the hover color easily.

    Thread Starter giorgiomartini

    (@giorgiomartini)

    stupid me

    wwww.tweakingknobs.com

    hi downhub , i tried that but the code doesnt seem to be in the styles page ??

    hope you can help me.

    thanx!

    try to find it in the header.php of your theme:

    .sidebar div a:hover
    {
    background-color: #feb400;
    }

    Thread Starter giorgiomartini

    (@giorgiomartini)

    I found it in custom.php this :

    .sidebar div a:hover {
    background-color: <?php echo $fancy_second_color; ?>;
    }
    .sidebar div.pink a:hover {
    background-color: <?php echo $fancy_second_color; ?>;
    }

    i tried to change it to this :

    background-color: <#ffffff>;

    but it didnt do any change.

    any other ideas ?

    <?php echo $fancy_second_color; ?>
    looks like there is some costum settings from within the admin area.
    could you check ‘admin’ – ‘appearance’ – ‘fancy theme options’ : second color used for rollovers’

    if you want a color not from the menu,
    well done, you are nearly there:
    you already found the right lines in custom.php (just enter the color code without the <>):

    .sidebar div a:hover {
    		background-color: #ffffff;
    	}
    .sidebar div.pink a:hover {
    		background-color: #ffffff;
    	}

    good luck ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Just can find where to change the color of one font.’ is closed to new replies.