Forum Moderators: not2easy
Here's what I wanted to do.
I wanted to use CSS positioning to put a paragraph or two as the first bit of text IN THE CODE, but have it positioned else where on the page.
So inside by body tag, I put a div and tried to postion it relative. The text did move DOWN the page, but it left a gap at the top.
So I tried absolute and the gap went away, however in this case, I cannot seem to control it's position left to right.
Maybe I should use a container div... set to 770px wide, use margin for the left right and absolute for the top down?
#moved {
position: relative;
top: <whereever you want it>;
}
#therest {
position: relative;
top: 0px;
}