-
AuthorPosts
-
November 27, 2014 at 11:31 pm #154280
Hello we have tested the print css code and we need to print the accordions and tabs as all open rather than closed so the titles and the content are printed. Are you able to kindly inform of the print media css code to ensure when printing all the content information in the tabs and accordions are printed instead of the titles only.
Thank you again
November 28, 2014 at 2:07 pm #154687Hi there,
Thanks for posting in.
Add this css at your customizer’s custom css.
@media print { .accordion-body { height: auto !important; } }
Hope this helps 🙂
November 30, 2014 at 6:10 pm #155438Thank you but unfortunately the above did not work. We are using ethos. Dose that make a difference?, Also what would it be for tabs aswell.
Thanks you 🙂
December 1, 2014 at 2:32 am #155615Hey Corinne,
Please add the code below in the Appearance > Customize > Custom > CSS
@media print { .accordion-body { display: block !important; } }
Hope that helps. 🙂
June 10, 2015 at 5:46 pm #298463Hello,
This works for accordions but not tabs. Could you please clarify what the class is that will make tabs show all content when printed.
Cheers,
TraceyJune 11, 2015 at 8:38 am #299036Hi Tracey,
For tabs, you can add this under Custom > CSS in the Customizer.
@media print { .x-tab-content>.x-tab-pane { display: block; } }
Hope that helps.
-
AuthorPosts