• Resolved MightyGeekMan

    (@mightygeekman)


    First, this is an awesome theme.

    My only real issue is that I can’t figure out how to make the post title links (I think their class is entry-title) a different link color than all the other links on the site like they are in the demo site.

    Specifically, I like all my links to be orange, but I want my post titles to be dark blue, even though they’re also links.

    I also want to change the font of the post titles without affecting any other h1 tags elsewhere on my site.

    I’ve gone through the CSS files, but I’m no expert and all the simple-seeming modifications I’ve made haven’t worked.

    Any help with this would be greatly appreciated.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Qlue

    (@qlue)

    Please try placing the following code in Theme Options > Advanced > Custom CSS (which will override default CSS settings):

    h1.entry-title,
    h1.entry-title a {
         color: #002AFF ;
         font-family: 'Open Sans', sans-serif;
    }

    Also please make sure to add the stylesheet of Google font if you are using it.

    Hope this helps ??

    Thread Starter MightyGeekMan

    (@mightygeekman)

    Thank you so very much! That was exactly what I was looking for.

    Another question; is it possible to include a search field in the main title? I have a lot of posts and sometimes searching the site is faster/easier than looking through the entire archive.

    Thread Starter MightyGeekMan

    (@mightygeekman)

    BTW, I do know that search can be added to the footer. What I’m really looking to do is add it to the top menu bar so it’s always visible.

    Theme Author Qlue

    (@qlue)

    In header.php file, after the following line of code:

    </nav><!-- #site-navigation -->

    you will have to add this line:

    <?php get_search_form();?>

    You will have to adjust the CSS a little to make it look nice ??

    Thread Starter MightyGeekMan

    (@mightygeekman)

    Thanks again! You’re pretty awesome.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Changing post header font and color’ is closed to new replies.