One, you have a heck of a lot of excess code that should be cleaned up.
but to address your immediate issue, the reason you cannot see the images in the book is because the location is described as:
src="
nameofmybook/image003.jpg"
When it should read
src="image003.jpg"
The extra text indicates that the images are in a folder. Removing it should fix your issue. But be careful; it is easy to screw up find-and-replace.
Quote:
Originally Posted by JaneHere
They are showing up, just all at the end! Not much point in this, their all showing up at the end. The .html has them in their rightful place.
<p class=MsoNormal style='text-indent:.5in'><span style='font-family:"Arial","sans-serif"'>textfrommybook</span></p>
<p class=MsoNormal style='text-indent:.5in'><span style='font-family:"Arial","sans-serif"'><img
width=467 height=350 id="Picture 8"
src="nameofmybook/image003.jpg" alt="IMG_0110.JPG"></span></p>
<p class=MsoNormal style='text-indent:.5in'><span style='font-family:"Arial","sans-serif"'>MOREtextfrommybook</span></p>
|