Absolute Positioning in CSS
-
I want my content div layer (the one where the main entries are) to be at a specific place on the page, so thought the best way to go about this was to use CSS so I changed it to this:
#content {
position: absolute;
right: 100px;
top: 100;
width:300px;
}
but it’s still not working. the div layer on the index.php is definietly identifed but it just won’t move! it’s really frustrating! Am I doing something wrong or do I need to absolute position something else as well?
PLEASE HELP!
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
The topic ‘Absolute Positioning in CSS’ is closed to new replies.