• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

changing color, fonts, and background

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › changing color, fonts, and background

This topic is: resolved

Tagged: background color, Primary Navigation Menu, widget

  • This topic has 11 replies, 4 voices, and was last updated 13 years, 2 months ago by WISR.
Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • April 18, 2013 at 8:34 am #36142
    WISR
    Member

    can someone show me where I change the following on my site. http://www.WiSR.ca

    1. font size and font style of primary navigation menu

    2.change 'Featured Communities" widget background color (white to black) and font color(black to white)

    http://www.wisr.ca
    April 18, 2013 at 10:51 am #36161
    wmwebdes
    Member

    Hi
    This is the CSS for your primary nav

    #nav {
    color: #fff;
    font-size: 13px;
    }

    Looks as though it picks up font-family from the CSS below.

    body, h1, h2, h2 a, h2 a:visited, h3, h4, h5, h6, p, input, select, textarea {
    font-family: 'Droid Serif', arial, serif;
    font-weight: normal;
    line-height: 22px;
    }

    Change the font size under #nav and add the font you want under #nav.

    Let me know if you are OK with that.

    April 18, 2013 at 11:01 am #36162
    wmwebdes
    Member

    For the Featured Communities add the background colour to .communities as shown below:

    .communities {
    border-bottom: 3px double #000;
    clear: both;
    margin: 0 auto 25px;
    overflow: hidden;
    padding: 0 0 15px;
    width: 930px;
    background-color: #000000;
    }

    April 18, 2013 at 2:25 pm #36212
    WISR
    Member

    Got it to work but now can't figure out how to change the font color in the "Featured Properties" widget.

    Would like the background to be black but it washed out the font so I'll leave it for now.

    Thanks for your help ๐Ÿ™‚

    April 18, 2013 at 2:46 pm #36220
    wmwebdes
    Member

    Font colour in “Featured Properties” widget is black (slightly off black) so you can't see it with a dark background.

    Add
    color: #333;
    to .communities and change the colour to whatever you like.

    #333 is almost black.

    Free colour picker here... http://www.iconico.com/colorpic/

    April 18, 2013 at 4:21 pm #36234
    WISR
    Member

    Tried adding a color to the .communities (Featured Communities) but it wouldn't take.

    Below is how it looks and I tried adding, color: #fff, (not shown below), directly below .communities { , but it didn't change the color of any fonts.
    .communities {
    border-bottom: 3px double #000;
    clear: both;
    margin: 0 auto 25px;
    overflow: hidden;
    padding: 0 0 15px;
    width: 930px;
    background-color: #000;
    }

    .communities p {
    font-size: 13px;
    line-height: 20px;
    padding: 0;

     

    I'm thinking it must be changed elsewhere, maybe under my "red theme" in .css?

     

    April 18, 2013 at 8:01 pm #36268
    AnitaC
    Keymaster

    Each home is a Featured Post, so the settings are there - but because a lot of elements are now combined, if you change 1 element, they change something else. You need to break it down so here's what to do:

    For the black background, do this. Look for this code and change the background color to #000000 for black.

    .communities {
        background-color: #DDDDDD;
        border-bottom: 3px double #000000;
        clear: both;
        margin: 0 auto 25px;
        overflow: hidden;
        padding: 0 0 15px;
        width: 930px;
    }

    Then, copy and paste this at the bottom of your style.css sheet. I added the color in there - change the color to what you want.

    .communities h2, .communities h2 a, .communities h2 a:visited {
        font-family: 'Droid Serif',arial,serif;
        font-size: 14px;
        color: #cc9900;
        line-height: 22px;
        margin: 0;
        text-align: center;
        text-transform: uppercase;
    }

    Need help with customization or troubleshooting? Reach out to me.

    April 18, 2013 at 8:08 pm #36269
    ramseyp
    Member

    If you want the whole widget background to be black, this should work (in your style.css):

    `.widget.featured-listings { background: #000; }`

    To turn the widget's font to white, this should work (also placed in style.css):

    `.featured-listings .listing { color: #fff; }`


    Community โ€ข Work โ€ข Conversations

    April 18, 2013 at 8:12 pm #36270
    AnitaC
    Keymaster

    Open up your style... you added the at the beginning and end of the style sheet. Remove that code.


    Need help with customization or troubleshooting? Reach out to me.

    April 18, 2013 at 9:01 pm #36284
    WISR
    Member

    I was able to make the color change for the font below the images in "Featured Communities", and make the background black too.

    The problem I'm having is when I change the color of the word " Featured Communities" to white, (so its visible with the black background), it also changes the headlines in my "From the Blog" section and the lower part of my slider text to white as well and they become invisible unless I hover over them with my mouse.

    How can I change the color ofย  the word "Featured Communities" to white and have the other 2 sections (stay black) not be affected?

    Thanks for all your suggestions! This is quite a learning experience ๐Ÿ™‚

     

    April 18, 2013 at 9:21 pm #36289
    AnitaC
    Keymaster

    Add this to the bottom of your style sheet:

    .communities h4 {
    color: #ffffff;
    }

    Need help with customization or troubleshooting? Reach out to me.

    April 18, 2013 at 9:29 pm #36294
    WISR
    Member

    WOOHOOO!!!ย ย  Thank you ๐Ÿ™‚

     

  • Author
    Posts
Viewing 12 posts - 1 through 12 (of 12 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble