Hi. I’m sure this has been asked a thousand time but I can’t find a specific answer in support. Is there some code to lower the main logo (padding height)? My logo is large and is hitting the top of the browser and I would like to lower it without affecting the other element positions?
Many thanks
Hello drmoody!
You can add this on your custom.css or Quick CSS to move the logo. :)
div .logo {
float: left;
position: absolute;
left: 0;
top: 20px;
}
Adjust the top position.
Cheers!
Ismael
Hey, thanks very much. :-)