Hi,
I add a widget in my header (http://www.mottarellatest.it/mottarellanew/) but there is a problem in mobile version.
I like that in mobile version the widget appear below the logo.
How can I do it?
Thanks
Hey Serena,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
Please note the header widget is very wide and not all the info will be seen on mobile.
You can choose to display only one number instead.
@media only screen and (max-width: 767px) {
#header .widget {
top: 50px;
left: 50%;
transform: translateX(-50%);
}
.responsive #top #main {
padding-top: 90px !important;
}}
Best regards,
Vinay
perfect, thanks Vinay!!!