unioneighteen 0 Report post Posted July 7, 2012 I am using the slidedeck2 plugin on the page: http://www.societyandcompany.com/projects/ The slide looks fine in preview, but once I add it to the site, the pagelines CSS seems to be applying additional effects to the text (italics).. I am new to CSS, but when I inspect the element, it looks like it's calling style.css from the main theme. Is there a way to correct this? I've read some documents related to jquery being called multiple times (from both theme and again by slidedeck).. could this be the problem? Thanks! Todd Share this post Link to post Share on other sites
Rob 547 Report post Posted July 7, 2012 Todd, The CSS involved in that slider is strictly theirs, calling their style.css. However they are using some common elements that are probably conflicting now with something else on your site. Here's what they have: [code]dd { font-style: italic; }[/code] Change it via Custom Code to: [code]dd { font-style: normal; }[/code] And the font will not be italicized. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
unioneighteen 0 Report post Posted July 8, 2012 Thanks Rangelone.. I couldn't find a style.css within Slidedeck.. it may be there, but I'm new to this and I couldn't locate it. However, I went ahead and tried modifying the Pagelines CSS and it solved the issue. Hopefully that little change isn't going to mess up something else down the road.. Thanks again. Share this post Link to post Share on other sites