• Hi everyone,

    Something has slipped, and I can’t work out why or how! I’m having issues with the top banner, and I can’t work out whether the logo isn’t centered, or the title of the page. I’ve been into Enfold Child, but nothing I do there seems to change a thing. I can adjust the size of my screen to make both centered nicely, but when on full screen, something isn’t right – it was always fine, but something weird has happened. I wonder if it’s just a case of code to stop the logo being responsive and instead make it fixed?
    Many thanks in advance, really appreciate this forum.
    Have a great day,
    James

    • This topic was modified 3 years, 7 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic

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

Viewing 8 replies - 1 through 8 (of 8 total)
  • Looking at your page it seems fixed. Do you still need help?

    Thread Starter jwfw75

    (@jwfw75)

    Hi Dave,

    Thanks for getting back to me – maybe it’s my computer, it seems when I adjust the size of the screen, then I can make the logo look centered above the page title that is on each image, but when I full screen it, it looks off. If you think it looks centered with you, then it must be me!
    The only issue I have now which I can’t solve is the black text that has shown up on https://www.ecis.org/events at the top, but I’ll see if I can work out where to remove it – the events calendar is the one page where it seems quite tricky to change the top text.
    Many thanks
    James

    Thread Starter jwfw75

    (@jwfw75)

    Hi Dave

    Actually, I think I need a hand, please. The black text you see at the top of this page: https://www.ecis.org/events – please can you tell me where I would go to even see the text to edit? I’ve tried going through all the menus, Enfold Child, Events Calendar, the works, but I can’t even see where the text would be. Then I might be able to work out how to change it, or better still, delete.
    Many thanks

    Hi,

    I checked on a bigger screen and indeed the logo is slightly off-center there. On smaller screens like mine it looks fine. I have a resolution of 1400 x 900.

    To make it look good on bigger screens too, you need to add some CSS. You can do this through the theme customizer or in the style sheet of your child theme.

    This is the CSS that makes it work for me on bigger screens like yours too:

    
    div .logo {
        left: 0;
        position: relative;
    }
    
    div .logo img {
        display: block;
        margin: auto;
    }
    

    However, that then pushes your hamburger menu on the right out of sight. To get that back where it was you also need to add this:

    
    #top .main_menu {
        top: 0;
    }
    

    That should do the trick

    Also take a look at screens smaller than 990 pixels wide – there things shift again so you’ll need some additional CSS rules.

    You also asked about

    The black text you see at the top of this page

    , but I don’t see which text you mean. Could you clarify?

    Thread Starter jwfw75

    (@jwfw75)

    brilliant, thanks a lot Dave. It looks like the black text has gone now – it said “upcoming events” and I couldn’t find where it was written in the back end, I went through all the wordpress menus trying to find where it had been entered, but no luck. I will use the code, though – really helpful.
    Many thanks, really appreciated

    Thread Starter jwfw75

    (@jwfw75)

    The code has done the trick, you’re brilliant, thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Issues with centering the logo in top banner’ is closed to new replies.