PDA

View Full Version : css question



Darksaviour69
October 26th, 2006, 15:51
#logo{
position:absolute;
left:35px;
top:28px;
width:970px;
height:69px;
background-image: url(images/advancelogo.gif);
background-repeat:no-repeat;
background-color:#000000

i want that box to resize from the right, (for smaller resolutions), how do i do that?

Darksaviour69
October 31st, 2006, 12:36
ok thats a bit vague,

this is what i trying to do here
http://www.glish.com/css/
when you resize it the txt moves wraps, thats what i want to do, and all the css is there, so i'm going to go thought it to see how its done

souLLy
November 1st, 2006, 11:22
not sure i follow entirely, layouts like that use percentages for widths normally, with a minium width so they don't shrink too far

width:50%;
min-width:300px;

Or am I completely misunderstanding that?