Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #760413

    Hello, I was given some CSS Shortcode to adjust my logo down 10% on our website, which worked great. It was clinging to high in our toolbar, and it looks great on mobile now.

    However, that same 10% is pulling our logo down in the DESKTOP version (only). Is there a way we can center our desktop logo in the upper left-hand of our website at http://www.acouplefortheroad.com ?

    Thanks!

    #760506

    Hey jtuselton,

    You can add this to quick css:

    @media only screen and (min-width: 667px) {

    #top #header .logo{
    position: relative;
    top: 0% !important;
    overflow: visible !important;
    }

    }

    Best regards,
    Jordan Shannon

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.