• Hello!

    So I have the Movers and Packers theme and although it gives me an option to somewhat change the site title colors. I want to be able to change the word Honor to blue and the rest of it black.

    How can I do this? When changing the colors through customization it only allows me to change the services word color to blue and the rest stays black.

    Thank you! Here is the website I am currently working on. honorhomeservices.com

Viewing 9 replies - 1 through 9 (of 9 total)
  • the ‘services’ word is in “<span>services</span>” and it has its own css. Edit it in the header.php file manually by deleting the <span></span>

    or

    you can override by adding this css(below) in your custom css:

    {h1 span {color: #333 !important}

    Try what suite you better. I hope this will help. Thanks.

    Thread Starter amshishilla

    (@amshishilla)

    That code is not in the header.php

    I found this code – <div class=”logo”>
    <?php movers_packers_the_custom_logo(); ?>
    “><h1><?php bloginfo(‘name’); ?></h1>
    <p><?php bloginfo(‘description’); ?></p>
    </div><!– logo –>
    <div class=”header_right”>

    Is this what you were looking for?

    And your second option I added to my child theme and it had no affect

    ??

    can you install simple custom css plugin in your child theme. Once you install please activate it. Then copy and paste the css given(below) into the custom css. The plugin should be in the dashboard Appearance>Custom css.

    h1 span {
    color: #333;
    }

    Thread Starter amshishilla

    (@amshishilla)

    I just exactly what you said and nothing. :/

    I forgot to add !important. Try this.

    h1 span {
    color: #333 !important
    }

    Thread Starter amshishilla

    (@amshishilla)

    Woo it worked!!! But how do we change the honor to blue??

    Thank you so much for your help by the way!

    If you want to change the word ‘Honor’ only, you have to change the title to ‘Honor” and site description to ‘Home Services. Because the ‘Honor Home’ sentence is in a same css. After that use put the css below into your custom css

    .logo h1 {color: #1874c1 !important}

    Thread Starter amshishilla

    (@amshishilla)

    Awesome! Thank you again!

    Im glad to help you ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Changing Site Title Colors’ is closed to new replies.