Hello there,
We are having a minor issue with the horizontal display on mobile devices. I am inquiring if I can force the horizontal display to show as it does in the vertical display, basically in a single column. We are having some words go outside the box in the mobile horizontal display.
I am using the following CSS for a 1200 pixel header image:
@media only screen and (min-width: 1200px) {
.responsive .container.av-logo-container {
width: 100%;
max-width: 100%;
padding: 0;
right: 0;
}
.html_header_top.html_logo_center .logo,
.html_header_top.html_logo_center .logo a {
overflow: visible;
width: 100%;
max-width: 100%;
}
.html_header_top.html_logo_center .logo img {
margin-right: -2em;
width: 90vw;
max-width: 100%;
}
}