Tabs Mobile View?

Hi @Mike-E-angelo,

I can suggest one of the following:

  • Wrap the tabs

  • Use shorter text for the tabs or only icons.

  • Use a CSS media query to hide the text on a mobile device:

    @media (max-width: 768px) {
        .rz-tabview-title {
             display: none;
        }
    }
    
1 Like