Forum Moderators: open
For the closing paragraph tag, go into Tools > Page Options and look for the Code Formatting tab. There's a scroll box where you can select the paragraph element (or any other) and apply what formatting you want. Be sure the "Omit end tag" box is unchecked. You can do quite a bit of fiddling with the look of your html code here, it's kind of neat.
I can't replicate the image size px problem in FP 2003. The only suggestion I can make is the be sure is the "Specify size" and "in pixels" are both checked in the picture properties diaglogue box. Or, there might be some other settings in the Page Options that might affect this, I'm just not sure.
<img src="image.jpg" width="200" height="150" alt="alternative text">
[Be sure the "Omit end tag" box is unchecked.
Bear in mind that if you are adding "px" to the width and height values of an img tag then the program is correct in removing them if an auto-correct feature is enabled. You only use "px" with CSS, so a normal image element should look like this:
<img src="image.jpg" width="200" height="150" alt="alternative text">
For the closing paragraph tag, go into Tools > Page Options and look for the Code Formatting tab. There's a scroll box where you can select the paragraph element (or any other) and apply what formatting you want. Be sure the "Omit end tag" box is unchecked. You can do quite a bit of fiddling with the look of your html code here, it's kind of neat.
This is the last problem for me to sort out for my redesign.
I have found the scroll box, clicked on the <p> and found the "Omit end" and "Omit start" tags to be unchecked, but still the end </p> disappears when I hit the Save button.
Could there be any other defaults overriding this?