Hello Daniel,
On 4/3/07, Daniel Hammond <[EMAIL PROTECTED]> wrote:
>
> I have a page where the left column is the navigation with a fixed width
> in
> pixels, and the content to the right of it is fluid in its width. I tried
> following these guidelines:
> http://blog.html.it/layoutgala/LayoutGala31.html.
>
> Here is my URL: http://www.objectivedesigns.com/other/mcc/default1.htm.
> And the CSS:
> http://www.objectivedesigns.com/other/mcc/css/2col_leftNav1.css.
>
> The problem I'm having is that the content protrudes out to the right what
> seems to be the same amount of space that the navigation is taking up on
> the
> left. I simply want the content to extend to the right side of the browser
> window instead of out of the bounds of the window.
In your CSS you have:
div#content{
width: 100%;
background: #ddd;
margin-left: 200px;
}
removing width:100%;
will resolve your problem.
width + margin = total container size,
in this case it causes the content to extend 200 pixels past the right side
of the browser window.
Daniel Hammond
> 2227 Dunseath Ave.
> Atlanta, GA 30318
> 770-842-8817
> www.objectivedesigns.com
>
>
> ______________________________________________________________________
> css-discuss [EMAIL PROTECTED]
> http://www.css-discuss.org/mailman/listinfo/css-d
> IE7 information -- http://css-discuss.incutio.com/?page=IE7
> List wiki/FAQ -- http://css-discuss.incutio.com/
> Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
>
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/