Hi,
We have a website with a rather long ‘logo’ in the header that is actually a large image of the organization name and the tagline. We like how it looks on desktop. We created a vertical image for mobile and tablet portrait, which works fine. We are using the long version on tablet landscape viewports and it looks fine except there is a lot of blue background below it. We can’t figure out how to tighten that up. Could you please take a look and provide advice? The website URL is in private content. Thanks.
Hey GWS,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 185px !important;
}
}
Best regards,
Rikard
Thank you!