Page 1 of 1

Tabs on and off keep content

Posted: 12 May 2016
by Sonoma
Hi.

Is there a way that we can remove tabs and keep content?

Essentially show all or show in tabs. Kind of like print mode.

Re: Tabs on and off keep content

Posted: 13 May 2016
by rostislav
Hi, If by print mode you mean you have some CSS in a @media print query, then you can just apply the same CSS without the @media print prefix. E.g.

Code: Select all

@media print {
    //your print CSS here, e.g.
    body {
        background-color: lightgreen;
    }
}
becomes just:

Code: Select all

body {
    background-color: lightgreen;
}
Might also have to make your CSS rules !important, like this:

body {
    background-color: lightgreen !important;
}

Re: Tabs on and off keep content

Posted: 13 May 2016
by Sonoma
That seems simple. I will try.

We have forms withover 200 fields and some users need to full page for QA.

Thank you.