Disable vertical tabs on small resolutions
-
Hey,
First, great plug in, seriously good work! Just found and purchased the additional expansion plugins.
I am using the tabs features, and notice that they automatically resort to vertical tabs when the screen resolution drops below a certain # of pixels. From my (very rudimentary) understanding of CSS, this is the code that controls it:
/* Styles for screens that are less than 768px */ @media only screen and (max-width: 768px) { .su-tabs-nav span { display: block; } .su-tabs-vertical .su-tabs-nav { float: none; width: auto; } .su-tabs-vertical .su-tabs-panes { float: none; width: auto; } }
How would I go about creating a new class to apply to my tabs when I don’t want them to auto-shrink on smaller resolutions. Alternatively, how would I make that the default behavior, and create a class to apply when I do want a particular set of tabs to auto-shrink on smaller resolutions?
- The topic ‘Disable vertical tabs on small resolutions’ is closed to new replies.