Quote:
Originally Posted by Karellen
I started cleaning up a book yesterday and for a few minutes couldn't figure out why the font was so large on all the pages.
CSS was clean as I had replaced it. There was no in-line styling. The <body> tag was clean, no <div> tags.
Ends up the styling was in the html tag, which I had not seen before in any other book...
PHP Code:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml" style="font-size:1.250rem;">
A quick S&R fixed it.
|
I ran across something like that a week or so ago. I think I'll set up a saved search to look for any style= tags (just in case I don't catch one of those if it happens again).