Re: [WSG] new layout/design

2004-06-13 Thread Tim Lucas
Chris Stratford spoke the following wise words on 13/06/2004 2:52 PM EST: Firstly thanks for the indepth review! Pleasure =) */ - Teaser boxes shouldn't be span's /*Hmmm. I thought it would be ok using a span because its only going to contain small notes, or a link or two. What should I use in

[WSG] new layout/design

2004-06-12 Thread Chris Stratford
Hey WSG, Just looking for your opinion. My new layout - I coded 100% myself last night. Although I have a feeling its a clone of a lot of the "blog" scripts you can download? Do you think this layout copies any layouts? I did take other sites as inspiration, although I never used another

Re: [WSG] new layout/design

2004-06-12 Thread Tim Lucas
Chris Stratford spoke the following wise words on 13/06/2004: Just looking for your opinion. My new layout - I coded 100% myself last night. Here is the link: http://www.neester.com/temp/ CSS: http://www.neester.com/temp/styles/june2004.css My opinion: Source code and accessibility: - Do you

Re: [WSG] new layout/design

2004-06-12 Thread Tim Lucas
Sorry for the dual posting. Accidently left my digital signature on for the last post. I wish the list software didn't abuse the mail headers. Chris Stratford spoke the following wise words on 13/06/2004: Just looking for your opinion. My new layout - I coded 100% myself last night. Here is the

Re: [WSG] new layout/design

2004-06-12 Thread t94xr.net.nz webmaster
Source code and accessibility: - Do you really need all those nested div's? I have it because IE wont center the DIV, so I need the nested DIV to have a text-align:center in there... Have you tried using margin: 0px auto; for cetering divs? Camz www.t94xr.net.nz

Re: [WSG] new layout/design

2004-06-12 Thread Chris Stratford
Yeah thats what I have for the inner Div. but IE doesnt recognise that I thought. So the way around that is to have an outer div with: text-align: center; So that the inner div is centered. Then the inner div has: text-align: left; to fix the text, but its also got a set width... ?? I thought that

Re: [WSG] new layout/design

2004-06-12 Thread Tim Lucas
Chris Stratford spoke the following wise words on 13/06/2004 3:31 PM EST: Yeah thats what I have for the inner Div. but IE doesnt recognise that I thought. If you apply the text-align to the body element you only need 1 div: body { text-align: center; } #shell { text-align: left; margin: 0px