• Resolved volunteervillage

    (@volunteervillage)


    Hello, I love the theme, thank you.

    Just having one issue…on the responsive menu, the submenu items under “gallery” are showing up in the menu, but they overlap the parent menu items. The submenu items cannot be selected, because when they are clicked the parent menu item is selected instead.

    I’m sure it’s a simple CSS snippet, but I cannot figure out what.

    Thank you for your help!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author 8Degree Themes

    (@8degreethemes)

    Hi There,

    Seems like you have added this css code from Customizer:

    .main-navigation ul {
        float: right;
    }

    this is causing the problem.

    SO add one more to override it in responsive screens:

    @media screen and (max-width: 992px){
    	.main-navigation ul {
        	float: none;
    	}
    }

    Let me know if that works, It should ??

    Thanks!

    Thread Starter volunteervillage

    (@volunteervillage)

    Thank you so much for the quick response! Problem solved. Brilliant!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Responsive submenu items’ is closed to new replies.