Changing the length and positioning of div's

moonlit

New Member
I'm new to div's and CSS. How can I change the length of my div's without changing the CSS?

My site link is: http://www.classicengraving.org

I need to change the length of the left & right sides and adjust where the bottom needs to be placed on various pages within my site. How do I go about this?
 

adx

New Member
I'm not quite sure what you mean by the right and left sides, but if you simply want to change the height of a single div without a stylesheet, you could just do <div style="height: 300px"> or likewise. Is this what you mean?
 

moonlit

New Member
I can do that but then my bottom image is messed up because it won't align where it should. Someone told me it's because I'm using absolute positioning...
 

adx

New Member
Yes, absolute positioning could do that. Is this a regular Html image link you're using, or a CSS background image? The CSS one has a background-position attribute.
 
Top