asuydam 0 Report post Posted September 14, 2011 Hello, On one page of my website, extremefitnessproducts.net/products/p90x/, heading text that is italic is being changed to lowercase at the beginning of the sentences they are in. I found this in a style sheet, h1 em, h2 em, h3 em, h4 em, h5 em, h6 em, #nav em{text-transform: lowercase;font-style:italic;} and changed it to h1 em, h2 em, h3 em, h4 em, h5 em, h6 em, #nav em{font-style:italic;} But no luck. Thanks for any help! Aaron Share this post Link to post Share on other sites
Rob 547 Report post Posted September 14, 2011 Aaron, which stylesheet are you changing? All styling changes are best done in the Custom Code CSS Rules area. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
asuydam 0 Report post Posted September 14, 2011 Rangelone, I changed the stylesheet.css found in "appearance-editor-platformpro-stylesheet.css" I just now changed that stylesheet back to how it originally was, and put that second line of code in my first post in the custom css rules area, still no change. Aaron Share this post Link to post Share on other sites
Rob 547 Report post Posted September 14, 2011 Ah... not a good idea to change the platformpro stylesheets. Please, you should add custom code to the base, dynamically via Dashboard > PlatformPro > Custom Code and then in the CSS Rules area. BTW, you should have platformbase activated, not platformpro. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
asuydam 0 Report post Posted September 14, 2011 Rangelone, I did add that code to the custom code css area per what you said in your first reply, it didn't change anything. I also have had platform base activated the whole time. Am I entering the wrong code? Sorry for any confusion! :) Aaron Share this post Link to post Share on other sites
kastelic 6 Report post Posted September 14, 2011 Hi, try this instead: [code] h1 em, h2 em, h3 em, h4 em, h5 em, h6 em, #nav em{text-transform:none !important} [/code] Share this post Link to post Share on other sites
asuydam 0 Report post Posted September 14, 2011 Seems to work! Thanks kastelic :) Aaron Share this post Link to post Share on other sites