tkearsley
13 years agoMaven
CSS for single page
Hello,
I am seeing an issue with the printer friendly page formatting. The text near the top of the page is overlapping, see screenshot.
I know how to edit the CSS responsible, but the question is how do I make the CSS (below) apply to just one page (TKBAticlePrintPage)?
.lia-content > .lia-quilt > .lia-quilt-row-main{
padding:25px;
margin-bottom:20px;
background:url(/skins/images/C8251170964E6D5424CA1C4CFD46B580/ooyala_skin/images/badge_bg_splat_statistics.png) top left no-repeat;
position:relative;
top:-88px;
padding-top:45px;
}
Thanks,
Thomas
you can add the page class to the stack of divs to have css specific for this page, such as
#lia-body.TKBAticlePrintPage .lia-content > .lia-quilt > .lia-quilt-row-main
{ <whatever css changes you need to make>}