Click to See Complete Forum and Search --> : align help


sushigirl
08-13-2003, 09:51 AM
I would like to put this to the right of my web page

<div style="
position: absolute;
top: 20px;
left: 20px;
width: 550px;
height: 374px;
overflow: auto;
padding: 8px;
padding-right: 30px;
background-color: #FEE4E4;
color: #000000;
">
your text here <br />
your text here <br />
your text here <br />
</div>

When I put it on my code page it stay at left.
Thank you for your help.

pyro
08-13-2003, 09:58 AM
Try:

<div style="
position: absolute;
top: 20px;
right: 20px;
width: 550px;
height: 374px;
overflow: auto;
padding: 8px;
padding-right: 30px;
background-color: #FEE4E4;
color: #000000;
">
your text here <br />
your text here <br />
your text here <br />
</div>

sushigirl
08-13-2003, 10:00 AM
Thank you Pyro for your help

pyro
08-13-2003, 10:05 AM
You bet... :)