teenchaozie
01-02-2005, 10:16 PM
can u move a Div? If u can can u give me the code.
Thanx... :)
Thanx... :)
|
View Full Version : I know this is gonna sound stupid but... teenchaozie 01-02-2005, 10:16 PM can u move a Div? If u can can u give me the code. Thanx... :) M1SSED 01-02-2005, 10:45 PM Can you move a div? Well, if you mean like change its location on the page... <div id="blogl" style="position:absolute; left:0px; top:0px;"> Chance LEFT to how far oer you want it, and top to how far down you want it. teenchaozie 01-03-2005, 12:31 PM :) teenchaozie 01-03-2005, 12:42 PM My Div still won't move. Am I doing this wrong? <div id="blogl" style="position:absolute; left:0px; top:30px;" textarea name="NAME" cols=40 rows=8>Links--Comin' soon!</textarea> I want it to move down. Thanx! :) pb&j 01-03-2005, 12:59 PM you forgot the end and start brackets, and the ending div tag. <div id="blogl" style="position:absolute; left:0px; top:30px;"> <textarea name="NAME" cols=40 rows=8>Links--Comin' soon!</textarea></div> teenchaozie 01-03-2005, 02:06 PM Oh. Thanx! :angel: pb&j 01-03-2005, 10:49 PM no problem. good luck! |