Forum Moderators: open
I can give you a preview link if you have old NS to see what I mean, or if you're good coder, perhaps you can tell me where I'm going wrong.
I'm using Dreamweaver MX for Mac on OS 9.1/
Any help, please.
Thanks,
Max
Have a look at this thread:
[webmasterworld.com...]
I find that dreamweaver MX adds spaces around images. Not all the time though, but sometimes it looks as if it has added in a Line break, which would give the sort of effect you are getting. The cause of this is down to where you put your tags.
In previous Dreamweavers you could for example write:
<table>
<tr>
<td>
<img src="path to image">
</td>
</tr>
</table>
However, i have have noticed that now and again dreamweaver MX uses the above like a line break i.e. to get it to work properly you actually have to put the </td> tag on the same line as the cell content like so:
<table>
<tr>
<td>
<img src="path to image"></td>
</tr>
</table>
Like i say, not sure if this is what is causing your problem, but maybe worth having a quick look at.
Webboy
It seems to help working in standard mode vs. layout mode.
I didn't notice it in DW 4.