• Resolved nadinemuller

    (@nadinemuller)


    Hi there.

    I’ve moved around the post body and page body dimensions/ margins as well as the location of the post/ page title, but I’ve been unable to determine how to expand/ change the white background that’s behind the title. Could someone point me to the right place in the code? In my case, I’ve moved the titles further to the left (to align neatly with where the body starts underneath), but I can’t do the same thing with the white space that’s designed for the title. The best example of the issue is here: https://www.warwidowsstories.org.uk/category/about.

    Thanks in advance! ??
    Nadine

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Nadine,

    I’m not able to access you site via the above link. It leads to a “coming soon” landing page. Would you be able to remove the landing page so that I can access your site and see the customisations that you’ve already made to it?

    If your aim is to align the site title to the left then targeting .site-branding in your custom CSS should do the trick:

    .site-branding {
        text-align: left;
    }

    In case you’re not aware: Please do not edit your theme’s files directly. Any changes you make there will be lost when it comes time to update.

    To add custom CSS firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)

    Let me know if you’re able to remove the landing page or if you have extra questions on the above.

    Thread Starter nadinemuller

    (@nadinemuller)

    Hi Siobhan.

    Thanks for your reply! I’ve switched off maintenance mode now. Apologies, I have to keep switching it on.

    No, none of this is to do with the site title – i wish it was that easy.

    As you’ll see (and as you can see in the preview / sample images of the theme), there’s a white bar lying over the featured image of a post and in that bar appears the title. I know how to move the post title further to the left (it’s not a case of align, it’s a case of changing margins/ padding), but I can’t find a way to move the white bar.

    nadine

    Hi Nadine,

    I’m still being led to the landing page when attempting to visit https://www.warwidowsstories.org.uk/category/about. I took a look at a similar page on the theme’s demo site, though, and believe you may be referring to the overlap between the title and featured image.

    If you’d like to remove that overlap then you can do so via the following custom CSS:

    @media screen and (min-width: 1180px) {
        .post-thumbnail + .entry-header {
            margin-top: 0;
        }
    }

    If the above doesn’t help, please turn maintenance mode off on your site again and I’ll take a look.

    Very nice!

    Just what I wanted to do ??

    Thanks for your help

    You’re most welcome! I’m glad that helped out.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Post & Page Title Background’ is closed to new replies.