How to change some text colours.

  • Unknown's avatar

    Hi.

    I’ve just bought Custom CSS upgrade to customize my site.
    I’m wondering how to modify the subtitle colour and widgets title from grey to white.

    What do I have to write in the WP css editor?

    I don’t know anything about css language.
    Help me, please :)

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

  • Unknown's avatar

    This will do the widget titles and site description for you:

    .widgettitle, .site-description {
    color: #FFFFFF;
    }

    This would do the “current menu item” color:

    .main-navigation li.current_page_item a, .main-navigation li.current-menu-item a {
    color: #FFFFFF;
    }

    This would do the entry meta color (date/category)

    .entry-meta a, .hfeed-more .cat-links a {
    color: #FFFFFF;
    }
  • The topic ‘How to change some text colours.’ is closed to new replies.