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!
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