Help with CSS for Page Width
-
I am using the “Sales Letter Theme” which is a single column layout. It comes with a set width of 800px, and I want to narrow it down to 600px. Site is at http://stopdebtcollectors**DOT**org
I went into the CSS and found the code, and dropped it down to 600 – and when I do, the text fails to wrap, and just goes beyond the body area and gets cut off (overflow=hidden…) Here is the code controlling the width:
/* begin Box, Sheet */
.Sheet
{
overflow: hidden;
min-width:23px;
min-height:23px;
margin: 0 auto;
position: relative;
z-index: 0;
width: 800px;
}I looked at other styles and tried turning float on and off, changing position from absolute to relative, etc. and nothing I have tried will simply make the text flow nicely within the page body. (!!!)
If someone could help me understand what I am missing, it would be very appreciated!
-Doug
The topic ‘Help with CSS for Page Width’ is closed to new replies.