Change Color of the Home Page feature and menu font

Discussion in 'Poloray WordPress Theme' started by jnmarcum, Oct 26, 2012.

Thread Status:
Not open for further replies.
  1. jnmarcum

    jnmarcum New Member

    Joined:
    Oct 8, 2012
    Messages:
    17
    Likes Received:
    0
    Is it possible to change the color of the home page feature to a custom color that is not in your list of color options?

    Also, when the home page menu link is highlighted, the color showing would need to be changed to match the custom color as well.

    Thanks


     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover, #menu li.current_page_item a{
    background:brown;
    }
    .slider_container{
    background: brown!important;
    }
    
    Inplace of "brown" put your color code.
     
  3. jnmarcum

    jnmarcum New Member

    Joined:
    Oct 8, 2012
    Messages:
    17
    Likes Received:
    0
    This is great! Thank you! I messed up though, the menu button background I'd like to keep the same as it was...just change the font color. Other things that I need to change the color on so they match:

    The colored bar at the top of the other pages
    Menu fonts on front page and all the other pages
    Calendar number color on blog page
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #menu .ddsmoothmenu li a {
    color: red;
    font-family: your font type;
    }
    .heading_container {
    background: red;
    }
    #wp-calendar a {
    color: yellow;
    }
    #wp-calendar tbody td {
    color: red!important;
    }
     
  5. jnmarcum

    jnmarcum New Member

    Joined:
    Oct 8, 2012
    Messages:
    17
    Likes Received:
    0
    Thank you, I will try that. :)
     
Thread Status:
Not open for further replies.

Share This Page