Theducks's explanation made no sense to me, but here's a way to remove italics quickly. Find the <span> class that's being used to italicize the text (example: <span class="italics">. Click on the stylesheet.css file at the left and find that class (in the example above, it would be "italics"). Then remove the line that says font style: italic; from that section. Save the file, and you're done.
Personally, I would do a find for <span class="italics"> (or whatever italics code is being used) and then replace all with blank, which will remove all occurrences of the span. Then hit Beautify Files, which will remove all the closing </span> codes.
|