I'm making a bigcartel webstore and customizing the page with html.
I need an image positioned in a particular spot on the page.
I want it relative not absolute fixed on the screen, so when I adjust the window size it's relative to the window edges.
However, it's not working.
<img src="image.gif" style="position:relative; left: 250px; top: 100px;">
and it's still behaving as if it were position:absolute
What do I do?
I need an image positioned in a particular spot on the page.
I want it relative not absolute fixed on the screen, so when I adjust the window size it's relative to the window edges.
However, it's not working.
<img src="image.gif" style="position:relative; left: 250px; top: 100px;">
and it's still behaving as if it were position:absolute
What do I do?