I just downloaded DW6. The Property Inspector is missing the V Space and H Space fields, therefore I am unable to add space around my images. Suggestions?
It is no longer available because the problem with that was that it applied spaces around the image rather than where the user actually wanted them. You now need to use CSS and apply margins and paddings and target exactly where you want them by using something like this:
img {
margin-bottom: 0;
margin-right: 0;
margin-left: 0;
margin-top: 0;
padding-top: 0;
padding-right: 0;
padding-bottom: 0;
padding-left: 0;
}
img {
border: 0;
padding: 0;
}
The second style is generic to set margin and padding for all four sides.
Good luck.
North America
Europe, Middle East and Africa
Asia Pacific