Question

I recently changed Magento Go templates, but there is one issue with the template I'm currently using. The entire product description is italicized, and I cannot figure out how to remove this 'feature'. I've tried searching here and on the Magento forums for an answer.

So far, I've tried italicizing the text to see if it would negate the native italicization, to no avail. I've looked at this solution:

http://www.rockettheme.com/forum/index.php?f=264&t=192000&rb_v=viewtopic

But it's only applicable to Magento CE, it looks like.

I've added this:

p.normal {font-style:normal;}

to the custom CSS for the template, and to the "Custom Layout Update" field on the individual product, to no avail.

EDIT

OK, I think I've figured out how to do this, but I have no idea how to properly format the CSS to work. I've got this far:

.DIV.tab-content: { p.normal {font-style:normal !important}}

but it's not working. I'm sure the formatting is wrong; would someone be so kind as to point me in the right direction as to how to fix this? Thanks.

No correct solution

OTHER TIPS

Try adding the !important rule to your CSS.

p.normal {font-style:normal !important;}

Reference: http://css-tricks.com/when-using-important-is-the-right-choice/

Got it! I had to learn a couple of things (which is always nice) to come up with this. Hope it helps someone else. Just add this to the custom CSS box of the theme that you're using:

.tab-content {font-style:normal !important;}

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top