I am trying to use absolute positioning on my website ( www.yousellstuff.com ). Can somebody please help on what to put in and how to do it. I am not sure if this goes in the css forum btw.
Well I guess it all depends on what you are trying to position and where... But whatever you are trying to position, what you need to do is find the div you want to position in the css. Here is a sample below of what you could look like. Enter in your own values for # and you will be on your way! { position:absolute; left:#px; top:#px; } Code (markup):
the following code could be help you. #outsideDIV{ position:relative; } #insideDIV{ position:absolute; left: px; top: px; width: px; height: px; } Code (markup):