Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #56936
    Tlhdesigns
    Member

    Hi is it possible to change the color of the title and description text from gold to another color in the Free Create Theme for WordPress.
    The domain I’m working on is http://www.hmdayspachicago.com

    #56938
    Tlhdesigns
    Member

    There’s no custum CSS box in my sidebar/ WordPress admin panel…

    #56952
    Sakin
    Keymaster

    @Tlhdesigns: Yes, that option is there only in Pro version. For free version, you can install Catch Web Tools plugin and then add custom css from “Catch Web Tools => Custom CSS” box. You can change the color code in the following css and then add it:

    .site-title a {
        color: #cfa205;
    }
    .site-title a:hover {
        color: #e7b507;
    }
    .site-description {
        color: #cfa205;
    }
    #56958
    Tlhdesigns
    Member

    Got it! Thanks Sakin!

    #57195
    Tlhdesigns
    Member

    Hey Sakin, I’m back again.

    What coding do I put into the css box to change the colors of my main link bar at the top from the gold hover.

    Also my menu section in my admin, appearance of the control panel isn’t working correctly. I can’t choose what pages to add to my menu bar anymore. The side of it is completely gone all it says is format, no pages. This occurred when I activated this theme.

    #57377
    Sakin
    Keymaster

    @Tlhdesigns: Find the following css in your Custom CSS
    .main-navigation a:hover{color:#cab79a; }

    Then replace with the following:

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

    Hum, we are not experience this issue. We have been using default WordPress custom menu. Did you went to “Appearance => Menus” and add in pages. Maybe there is plugin conflict. try disabling plugin one by one and check in.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Create Theme’ is closed to new replies.