paragraph spacing with pictures

G

Guest

I have pictures on the left side of the page and paragraphs on the right.
When i made a change to the paragraphs, and hit preview there was no space in
between the paragraphs that i worked on, even though it shows up under normal
view. I think the pictures are somehow in the formatting of this. How can i
get the spacing to work.
 
R

Ronx

A quick glance shows several errors:

1) all sizes in styles must have dimensions. Example
<p align="justify" style="margin-top: 1; margin-bottom: 1">
should be
<p align="justify" style="margin-top: 1px; margin-bottom: 1px">


2) VML graphics should be avoided. These do not display in browsers
other than Internet Explorer running on Windows. VML consists of
WordArt, ShapeArt, text boxes and all other objects produced using the
Drawing Toolbar. See
http://www.rxs-enterprises.org/tests/VML-graphics.htm for more details.


3) Avoid the use of Java. Java applets require a JVM is installed on
all users PCs. Without it, you have no navigation. Most users do not
have Java installed, or have Java disabled. Your bottom navigation bar
(Java hover buttons) does not work in my installation of IE, and does
not appear at all in Firefox.


4) A div that is positioned absolutely cannot also be floated.
Example:
<div style="position: absolute; left: 346; top: 164; width: 617; height:
782; float:left">


In my opinion this page does not need any absolute positioning. The
layout would be better controlled using margins and floated elements.
As it stands, the absolute positioning you have will fail in IE7,
FireFox and will only work in IE6.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp

FrontPage Support: http://www.frontpagemvps.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top