View Single Post
Old 07-19-2012, 05:05 AM   #9
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,543
Karma: 19001583
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
You have to put the <div> outside the <p>, so you have to close the <p> and the <span> before the <div>, and open them again after the </div> (and get rid of the <br/>'s):

Code:
<span class="body" style="font-size:0.86em;"> my text</span></p>
<p class="body"><span class="body" style="font-size:0.86em;"></span></p>
<div class="group1">
<img src="images/E7-10_fmt.jpeg" alt="alt text" />
</div>
<p class="body"><span class="body" style="font-size:0.86em;">my text</span></p>
This doesn't make the code any prettier or more logical, but it will validate.
Jellby is offline   Reply With Quote