Tabs on and off keep content

Discussions about Forms Designer for SharePoint 2013 / 2016 and Office 365.
Locked
Sonoma
Posts: 88
Joined: Wed Oct 15, 2014

12 May 2016

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.

User avatar
rostislav
Moderator
Posts: 364
Joined: Mon Oct 19, 2015

13 May 2016

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;
}

Sonoma
Posts: 88
Joined: Wed Oct 15, 2014

13 May 2016

That seems simple. I will try.

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

Thank you.

Locked
  • Information
  • Who is online

    Users browsing this forum: No registered users and 18 guests