• Resolved fivebs

    (@fivebs)


    I’m using Go theme Version: 1.8.6 and want to change the colour of all the automatic page titles rather than turning them off and adding them back in manually.

    There doesn’t seem to be a Title section in Appearance. There is, however, Additional CSS. I have tried the following CSS but it didn’t seem to change anything:

    .entry-title {
    background-color: #FFFFFF !important;
    color: #FF0000 !important;
    }

    Would you please suggest a solution to my ignorance.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @fivebs, I hope you are doing great,

    I can see that the code is visible now as seen below:
    https://i.imgur.com/22pjN7Z.png

    That said, I assume the changes did not take effect instantly due to cache.

    As for the page you provided, if you would like to change color of the “CIF” text, you should use a different selector:

    h1.post__title {
    background-color: #FFFFFF !important;
    color: #FF0000 !important;
    }

    I hope this helps, cheers!
    Andrija

    Thread Starter fivebs

    (@fivebs)

    Thank you Andrija (@gdandrija)

    Your fix did the trick for the title itself but I needed a little extra to change the background for that entire section. Here is is in case it helps someone else:

    header.page-header {
        background-color: #000000 !important;
        color: #FFFFFF !important;
    }
    h1.post__title {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    }
    .entry-header {
        max-width: initial !important;
        padding-top: 0 !important;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change the page title on the Go theme’ is closed to new replies.