• Resolved sms12

    (@sms12)


    I have a private site so the URL is an image of it, but on the homepage I need the website title moved from below the logo to the right of it, so they are side-by-side next to the main menu. I’ve tried adding custom css from similar issues but nothing seems to work.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Evan Herman

    (@eherman24)

    Hi @sms12

    You should be able to just set the .site-title-wrapper element to display: flex; to resolve the issue. At least in my testing, I was able to get the title to the right of the logo using this method.

    .site-title-wrapper {
       display: flex;
       align-items: center;
       justify-content: center;
    }

    Let me know if that helps out.

    Thread Starter sms12

    (@sms12)

    @eherman24 Worked like a dream, thanks!

    • This reply was modified 5 years ago by sms12.
    Thread Starter sms12

    (@sms12)

    @eherman24 one last thing on this actually, how do i create more space between the logo/title and the header, as moving it inline pushed the header up, so it looks squished. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Relocate logo- nothing works’ is closed to new replies.