• Resolved wpba

    (@wpba)


    Hi,
    I like the theme but on a mobile device the menu does not look good.
    How can I change for example the width to optimize the look?
    Thank you

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Are you wanting to decrease the width of the mobile menu or increase it? You can use the following CSS in Appearance->Customize->Additional CSS

    .menu_sidebar_slide_left .header-menu-sidebar {
        width: 200px;
    }
    Thread Starter wpba

    (@wpba)

    Thank you! Looks much better now.
    On tablett or small PC windows it is not otimal because of the bigger font, but I guess I can live with that.

    Which font size are you referring to? If you want those changes to only effect smaller width devices such as phones you can use this CSS with a media query

    @media screen and (max-width: 568px) {
    	.menu_sidebar_slide_left .header-menu-sidebar {
        	width: 200px;
    	}
    }
    Thread Starter wpba

    (@wpba)

    Wow you are great! Thank you very much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change mobile menu’ is closed to new replies.