Hi,
I have a small display problem. I use WPML for multi language purposes with the standard Enfold setting (no menu language switcher) and it looks good on desktop and tablet, but on a smartphone the WPML flags are placed through the logo. Is it possible to place the wpm flags under the logo on mobile screens?
THX Freek
See; Website link
Hey Freek,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (min-width: 768px) and (max-width: 1024px) {
/* Add your Desktop Styles here */
.menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
@media only screen and (max-width: 767px) {
.responsive .logo img {
width: 65%;
}
.responsive #top #wrap_all .container {
width: 95%;
max-width: 95%;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
THX. That did the trick.
Freek