Sunspot theme – need color change for text in menu and sidebar

  • Unknown's avatar

    I’ve purchased the color upgrade but can’t figure out how to change the color of the automatically generate menu text. Also can’t figure how to change color of the text in my sidebar posts.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I’ve purchased the color upgrade but can’t figure out how to change the color of the automatically generate menu text. Also can’t figure how to change color of the text in my sidebar posts.

  • Unknown's avatar

    The following CSS should get you well on your way. You can edit the color codes as you desire.

    This is the CSS for the font color for the “current page item”.

    .main-navigation li a:hover, .main-navigation .current_page_item > a, .main-navigation .current_page_ancestor > a, .main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a {
        color: #BFAA91;
    }

    This is the CSS for the font color on the menu item when not current or hovered with mouse.

    .main-navigation li a {
        color: #F99999;
    }

    This is the CSS for the font color on the menu item when you hover it with your mouse.

    .main-navigation li:hover a {
        color: #F9DBDB;
    }

    This is the background color when you hover a menu item.

    .site-navigation a:hover {
        background: #CC0000;
    }
  • Unknown's avatar

    THank you very much!

  • Unknown's avatar
  • The topic ‘Sunspot theme – need color change for text in menu and sidebar’ is closed to new replies.