• Dear all,

    on the mobile version of my website (www.meierzajac.com) some elements are appearing in the wrong place. The language buttons appear right in the drop-down menu instead of above or next to it.

    Check here

    Is there a css tweak or something I can do to move them?
    Thanks for hints and help

    Best
    Hjalmar

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Hjalmar,

    the div that contains your language buttons has absolute position. The most simple way to fix this would be to add this to the end of your child theme stylesheet:

    @media (max-width:1024px){
    	.theme-penthouse #submenu-wrap .polylang-languages {
    		position: static;
    	}
    }

    Hope this helps.

    Thread Starter hjalmars_1989

    (@hjalmars_1989)

    Hi Asta,

    thx a lot, this was already a great help. Now the language switches are placed below, which is fairly ok. Do you also know how I can change this background color from dark grey to white?

    Best
    Hjalmar

    You’re welcome.

    To change background color you can add the following rule inside the same media query:

    .theme-penthouse #submenu-wrap {
        background: #fff;
    }

    Asta

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘language switch appear in wrong place’ is closed to new replies.