: > hi there, first post here, so thanks in advance for the responces :)
Hi Jérome :-) > for this page, http://ccsfactory.fr/biokatz/ > > I would like to have the nav (div with class="nav") to be pixel based, and > the content (div class="mainCont") to take the rest of the available space, > but with a min-witdh, and I was wondering how can i manage to use %, or if > there was a better option. First of all, I notice that you have a div with class "navcont" in your HTML, but are attempting to apply a style in your CSS to the class "navCont", which isn't working because of case-sensitivity. For what you want to do, a good place to start might be to remove the .ftl { float: left } rule, and instead apply a float and width to your .navcont div. That way the content of your .mainCont div will flow around it, and you can apply whatever width, min-width etc. declarations you like to it. -[]z. ______________________________________________________________________ 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/
