Remove side padding on mobile

Hey there,
I’d like to remove the left and right padding of my panels in this tab element http://prntscr.com/nl2bgc
thanks for your help!

Hi @zerotoone.de,

You can do this by making use of some custom CSS with media query through the Element CSS feature of the Tab element.

@media(max-width:480px) {
    $el .x-tabs-panels .x-tabs-panel {
        padding: 0 !important;
    }
}

It might be an advantage if you try to familiarize yourself with the features of the theme and basic CSS so here are some links related to the suggestion above for further reading:

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.