mobile menu

Hi,

my site is online and working,

www.conow.eu

just noticed that mobile menu will change between left aligned and centered.

how can I force mobile menu to always be centered?

Thanks

Comments

  • Hi,
    I do not see this issue.
    Tell me, which browser and OS do you use?
    Cheers.
  • google chrome on android, the problem affects only the main menu on mobile devices (dropdown).
  • when you browse the subpages on mobile the dropdown menu will be centered on some pages (for example page "start") and left aligned on others (for example "über mich") though i´m not sure it affects always the same pages
  • Please paste this Custom CSS and check it out again.

    #Top_bar nav#menu li{
    text-align: center !important;
    }
    Thanks.
  • same problem on small notebook screen firefox windows 7
  • maybe the alignment of the mobile menu automatically reflects the alignment of the page content, but I don´t see a way to adjust the alignment of the mobile menu for all pages
  • so maybe there is some theme option I missed or a css-oneliner to fix that
    thanks
  • css works perfect thanks a lot
  • adapted it so it will center only the mobile menu (mobile breakpoint is set on 1240px in my case)

    @media only screen and (max-width: 1240px) {#Top_bar nav#menu li{text-align: center !important;}}

    seems to work fine thanks
Sign In or Register to comment.