For the most of the alb elements it is not hard to find a good print layout – but for tabs it is not.
The thing is that in the source all titles are listed first and than another div is following.
Is there a solution for that problem ?
ok i managed it in this way: (it is for tab-titles on the left side – fullwidth)
@media print {
.sidebar_tab .tab_titles {
display: none !important;
}
.av_tab_section .tab.fullsize-tab {
display: block;
float: none;
width: 100%;
clear: both !important
}
.js_active .tab_content {
position: relative;
top: 0;
visibility: visible;
border: none !important;
box-shadow: none !important;
min-height: 1px !important
}
}