• Title states, the black portion of the header on every page other than the home page has suddenly increased. (Assume while formatting some pages, can’t seem to backtrack to where it came from)

    I assume there’s some CSS that can bring it back in line!

    If not, im a bit stuck,
    Thanks

    *Home page – https://www.xordium.co.uk (header should look like this)
    *Every other page template – https://www.xordium.co.uk/digital-transformation (Shouldn’t look like this)

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • .page-title is adding to the other pages?

    adding

    .page-title
    display: none;

    will get rid of it if that’s what you’re trying to achieve

    if my explanation is ambiguous, let me know.

    Thread Starter xordiumdev

    (@xordiumdev)

    Unfortunatly it hasn’t changed it as I already have site-wide CSS in place to fix an issue with white space (theme issue)

    .page-title{
    background: none !important;
    }

    I don’t want the whole black portion of the header removed, just the excess thats shown on every other page bar the homepage

    Thanks

    if you go to your WordPress Dashboard
    Appearance >> Customize >> Additional CSS

    you can replace the following

    .page-title{
    background: none !important;
    }

    with

    .page-title{
    display: none;
    }

    that’ll stop the display of the offending item as it’s sitting below the main black portion (header) and the content below.
    it won’t effect the header (you can try it in inspector first) or you should be able to see it in WordPress when you use Additional CSS, it’ll only change when you save it so if not happy you don’t need to.

    If I’ve still misunderstood, please expand what the adverse effect is so I can test it.

    Thread Starter xordiumdev

    (@xordiumdev)

    Thats fixed it, thank you so much!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Header height suddenly increased’ is closed to new replies.