• Resolved the1jc

    (@the1jc)


    Using the free Catch Box theme for http://www.bretsapito.com.

    We have 25 product categories that are arranged in a WordPress submenu. They look fine in browsers, but are not shown on an android smartphone.

    Is there another way to show these items without having to build a table and 25 links into the home page body (or some such)? That is, is there a way to use the WordPress menu system to display these 25 product categories on both web browsers and mobile devices?

    Thanks in advance…
    _jc

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Catch Themes

    (@catchthemes)

    @the1jc: The Catch Box theme is a responsive design where it hides the secondary menu in smaller devices. I see that you are using child theme. So add the following css in your child theme syle.css:

    @media screen and (max-width: 767px) {
    #branding #access-secondary ul.menu,
    #access-secondary {
        display: block;
    }
    }

    i have the same problem, but the code isn’t working properly for me. the sexondary menu is visible now, but there is no drop down, instead all menu items just get listed underneath 🙁

    website is: http://nas.cybermarket24.com/

    Theme Author Catch Themes

    (@catchthemes)

    @ak71: Yes the secondary menu is intended to hide on Mobile devices as it will distract the users. But since you wanted to show, I see that you have added the above css. This show your secondary menu in block. It would have been fine, if you were using only few items in secondary menu. But your secondary menu is long. So, maybe the following code can help you align the menu.
    #branding #access-secondary ul.menu li { float: left; }

    thanks, so the menu is a bit smaller in heigh now, but i would love to have another drop down menu for the secondary menu, not possible?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Submenu not showing on Android phone’ is closed to new replies.