I think i found my solution,
actually jameson, i think i had posted before about css positioning and you had referred me to that same article which was gold jerry... gold. but it didn't really speak about static divs by name and used some terminology that at the time i didn't understand like, regular flow, and boxes and stuff like that. but now i think i understand. regular flow is like text based, or positioned as regular text is, and boxes are basically plain divs or static divs. but even at that with me not understanding those parts it was still crazy helpful for understanding apdivs and relative and margins and paddings and borders and stuff, and also that other stuff all clicked once i figured out what the hell they were talking about. i guess i was just a moron and never used the div button instead of layers in dw8. but actually still now i find i prefer to make a layer (apDiv)and then switch it to static, easier to eyeball the dimensions.
the solution that i've come up with which seems to work quite well, with explorer and firefox at least, is to place static divs where i don't want text to show, i tried to put text inside them but sometimes in firefox it did weird things like overlapping text, anyways if i put static divs where i would like to place an image, and place it in regular flow, sometimes using float property, text in the regular flow will wrap around it, and then i just nest an apdiv on top of the static div i had made. this way text won't flow right under my images. and the apdivs (my images) seem to act similarly in explorer and firefox whereas placing images directly in the static divs isn't quite so consistent.
this is basically what i mean:
________________
-----------------|texttexttexttexttexttexttext
--///////////-----|texttexttexttexttexttexttext
--///////////-----|texttexttexttexttexttexttext
--///////////-----|texttexttexttexttexttexttext
--///////////-----|texttexttexttexttexttexttext
---^------------|texttexttexttexttexttexttext
---|------------|texttexttexttexttexttexttext
APdiv with image|<----- static div ]text text
in it.-----------|texttexttexttexttexttexttext
______________|texttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
texttexttexttexttexttexttexttexttexttexttexttext
i'm not sure if this really the correct way to use static divs, but it seems to work so far.
are there shortcomings to doing it this way?
and btw thanks alot for taking the time to look at my problem guys.