Re: [css-d] Minimum width for flexible page

2012-05-22 Thread Isabel Santos
matt1027, I'm sory, yestarday was kind of late, I think I replyed only to you and not to the list; wich is terribly unpolite, anyway, I complicated it to much and forgot the simplest solution: However flexilbe a layout, if you do not want it to get smaller then some size, you just give it some

Re: [css-d] Minimum width for flexible page

2012-05-22 Thread David Laakso
On Tue, May 22, 2012 at 10:49 AM, matt1027 box1...@bellsouth.net wrote: Hello David, Here's a link to the site. www.tekoapublishing.com Matt Greetings,. Matt inadvertently sent the link to his site in question off-list to me rather than to CSS Discuss. aside My take would be to put the

Re: [css-d] Minimum width for flexible page

2012-05-21 Thread Georg
I see now that I need to also have a minimum width because it breaks if it gets too narrow. What would be the best way to do that? Is there something I can add to what I'm already using? It works very well across all browsers. In most cases the following solution will work in all new,

Re: [css-d] Minimum width for flexible page

2012-05-21 Thread Chris F.A. Johnson
On Sun, 20 May 2012, matt1027 wrote: I've got a flexible page layout that uses a max width style to keep it from getting overly wide. max-width: 980px; Generally, 980px is too narrow. It also doesn't take into account the viewers size which van vary over a wide range. For some,

Re: [css-d] Minimum width for flexible page

2012-05-21 Thread matt1027
At 10:44 PM 5/20/2012, matt1027 wrote: I've got a flexible page layout that uses a max width style to keep it from getting overly wide. max-width: 980px; width:expression(document.body.clientWidth 980? 980px: auto); I see now that I need to also have a minimum width because it breaks if it

Re: [css-d] Minimum width for flexible page

2012-05-21 Thread Felix Miata
On 2012/05/21 17:56 (GMT-0400) matt1027 composed: matt1027 wrote: I've got a flexible page layout that uses a max width style to keep it from getting overly wide. max-width: 980px; width:expression(document.body.clientWidth 980? 980px: auto); I see now that I need to also have a

[css-d] Minimum width for flexible page

2012-05-20 Thread matt1027
I've got a flexible page layout that uses a max width style to keep it from getting overly wide. max-width: 980px; width:expression(document.body.clientWidth 980? 980px: auto); I see now that I need to also have a minimum width because it breaks if it gets too narrow. What would be the

Re: [css-d] Minimum width for flexible page

2012-05-20 Thread David Laakso
On Sun, May 20, 2012 at 10:44 PM, matt1027 box1...@bellsouth.net wrote: I've got a flexible page layout that uses a max width style to keep it from getting overly wide. What would be the best way to do that? Is there something I can add to what I'm already using? It works very well across