I applied a template to a view to format the title field as h3. IN chrome or Firefox it looks fine:

http://www.timdparker.com/content/marketing-strategy-articles

but in IE it is nuts, with fonts that get bigger all down the page until they are giant-sized. I can;t figure it out. Any clues much appreciated.

P.S. template is
views-view-field--Article-Headers--block--title.tpl.php

?>
<h3><?php print $output; 

Comments

yelvington’s picture

<span class="field-content"><h3><a href="/content/consultants-comeuppance">A Consultant&#039;s Comeuppance</a><h3></span>

Should be

<span class="field-content"><h3><a href="/content/consultants-comeuppance">A Consultant&#039;s Comeuppance</a></h3></span>

Note the </h3> where you had <h3>.

timdp’s picture

Many thanks - probably looked like a dumb question but I really appreciate the help - likely saved me hours of looking in the wrong places. BTW, is there a good tool for examining a page and identifying bad html, or does it just require years of experience?

thanks again