1. RE: New Web Sites + CSS Help Needed
- Posted by Brian Broker <bkb at cnw.com> Sep 03, 2004
- 439 views
cklester wrote: > > I have a question: > > On the main page, I've got two columns: "Programs" and "Projects." When > you resize your browser windows width, these two columns get > closer/farther apart. Somebody who knows CSS, what would I do to each > column to have them percentage width but keep the separating gutter > width static? Anybody? This has nothing to do with CSS but wouldn't the simple solution be to create a table with 3 columns and give the width of the middle (empty) column a static value? Just a thought, -- Brian
2. RE: New Web Sites + CSS Help Needed
- Posted by cklester <cklester at yahoo.com> Sep 03, 2004
- 426 views
Brian Broker wrote: > cklester wrote: > > I have a question: > > > > On the main page, I've got two columns: "Programs" and "Projects." When > > you resize your browser windows width, these two columns get > > closer/farther apart. Somebody who knows CSS, what would I do to each > > column to have them percentage width but keep the separating gutter > > width static? Anybody? > > This has nothing to do with CSS but wouldn't the simple solution be to > create a table with 3 columns and give the width of the middle (empty) > column a static value? Hey, Brian, CSS is simple, too... I'm just not a walking encyclopedia of CSS knowledge yet. The trend in web design is to move away from tables unless you're displaying tabular data. Otherwise, go with markup using CSS. I think it's a matter of separating content from design, a principle with which I agree in this case. See this cool page: http://www.meyerweb.com/eric/css/edge/ -=ck "Programming in a state of EUPHORIA." http://www.cklester.com/euphoria/
3. RE: New Web Sites + CSS Help Needed
- Posted by irv mullins <irvm at ellijay.com> Sep 03, 2004
- 407 views
cklester wrote: > CSS is simple, too... I'm just not a walking encyclopedia of CSS > knowledge yet. The trend in web design is to move away from tables > unless you're displaying tabular data. Otherwise, go with markup > using CSS. I think it's a matter of separating content from design, > a principle with which I agree in this case. > > See this cool page: <a > href="http://www.meyerweb.com/eric/css/edge/">http://www.meyerweb.com/eric/css/edge/</a> Pages designed with CSS are more friendly to people who have different tastes or special needs (text readers, better visibility, etc). In addition, if you have a largish web site, CSS makes maintenance much easier. Anyway, http://glish.com/css/ may have the answer to your question. Irv
4. RE: New Web Sites + CSS Help Needed
- Posted by Don <eunexus at yahoo.com> Sep 03, 2004
- 430 views
> > > I have a question: > > > > > > On the main page, I've got two columns: "Programs" and "Projects." When > > > you resize your browser windows width, these two columns get > > > closer/farther apart. Somebody who knows CSS, what would I do to each > > > column to have them percentage width but keep the separating gutter > > > width static? Anybody? > > > > This has nothing to do with CSS but wouldn't the simple solution be to > > create a table with 3 columns and give the width of the middle (empty) > > column a static value? > > Hey, Brian, > > CSS is simple, too... I'm just not a walking encyclopedia of CSS > knowledge yet. The trend in web design is to move away from tables > unless you're displaying tabular data. Otherwise, go with markup > using CSS. I think it's a matter of separating content from design, > a principle with which I agree in this case. I would tend to disagree on this point (there was bound to be one yes?). While I do agree with the basic concept (no tables unless you are displaying tabular data), I think it can be taken too far. I think it should be amended to tabular data and/or tabular layout. I use a mixture of both CCS and tables in my pages. And, if you look at your page it is technically tabular data in my opinion. Two columns and "x" rows of software you can download. But sorry, I am not that up on CCS to help out. I just use it for color enhancements, not for a full page design like you did. I know how to that in tables though. Something like: [eucode] <TABLE> <TR> <TD WIDTH=40%></TD> <TD WIDTH=50></TD> <TD WIDTH=40%></TD> </TR> </TABLE> [/eucode] Don Phillips - aka Graebel National Instruments mailto: eunexus @ yahoo.com