• Resolved mnohtm

    (@mnohtm)


    Hi
    I have about 5 tabs in my menu and I wanted to know if it possible to customize the menu tab on mobile device so the menu stays in same line and does not collapse?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hi @mnohtm,

    When I look at your page on mobile the tabs don’t collapse until the screen is too small to display them all on one line. What’re you looking to do?

    Let me know.

    Thank you,
    Kevin.

    Thread Starter mnohtm

    (@mnohtm)

    Hi Kevin
    On phone device the menu collapses… I will like to see how to keep it on the same line on all devices.
    Thanks in advance for all your help.

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hi @mnohtm,

    The only way I know of to solve this is to reduce the font size. However, this makes the tabs difficult to read: https://imgur.com/a/3ZSaOJv.

    If you’d like to go with a smaller font, add these styles:

    @media ( max-width: 450px ) {
        ul.tabs.wc-tabs li {
            font-size: 13px;
        }    
    }
    
    @media ( max-width: 412px ) {
        ul.tabs.wc-tabs li {
            font-size: 12px;
        }    
    }
    
    @media ( max-width: 390px ) {
        ul.tabs.wc-tabs li {
            font-size: 11px;
        }    
    }

    Cheers,
    Kevin.

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