Brandon Blatcher wrote:
> Two questions:
>
> 1. I'm working on a website, which has a simple horizontal navigation
> bar. When the browser window is resize, all the text in the bar bumps
> down to multiple lines, messing up the layout. How can I prevent this?
>
> 2. On the same website, in IE6, when the browser window is resized, the
> right column slips under the left column. How can I prevent that?
>
> The site link is:http://www.politicalfilter.com/content/frontpage/, and
> yes the HTML and CSS validiate. 
>
> Thanks for any suggestions.
>   


1. You will not be able to stop it from bumping down. Accommodation is 
your best bet: create a new orange background image that has no 
border-bottom and let it repeat to fill the space, vertically and 
horizontally,  regardless of the window width or user preference for 
font-scaling.

2.

One way:

IE/6 needs "play room."
#main
{ border:1px solid fuchsia/*test*/;
  margin: 0px 0 0 /*16px*/0 /*amened*/;
  width: /*78%*/76%/amend*/;
}
#rightcol
{
 float:left/*add*/; width: 20%/*add*/;
}



-- 
http://chelseacreekstudio.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to