WhiteEagle
Thu 26 July 2007, 06:44 am GMT +0200
Hi all,
A question here from the CSS newb that I am. How do I use CSS to create a layout, and not just the theme? I want to create a tableless site, as it is better than one that uses tables.
Thanks,
WhiteEagle (Nathan P.)
olaf
Thu 26 July 2007, 07:54 am GMT +0200
Nathan,
doesn't understand your question but you should start here:
http://css.maxdesign.com.au/index.htm
GiorgosK
Thu 26 July 2007, 12:21 pm GMT +0200
I don't completely understand your question either,
try a tutorial on a css layout
http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/and my opinion is download a simple layout from any template website (oswd.org, freecsstemplates.org ...)
and start playing with it (whenever you get stuck on a particular CSS term consult your great friend google)
WhiteEagle
Fri 27 July 2007, 09:19 am GMT +0200
Let me try again:
I want to create a tableless site design using CSS. How would I go about starting such a task? I already know how to use it to set colors for various items (links, text, background, etc.), but know I want to know to use it for the design part as well.
HTH!
Nathan P.
olaf
Fri 27 July 2007, 09:32 am GMT +0200
Let me try again:
I want to create a tableless site design using CSS. How would I go about starting such a task? I already know how to use it to set colors for various items (links, text, background, etc.), but know I want to know to use it for the design part as well.
HTH!
Nathan P.
start with reading the two previous answers :D
ventureskills
Fri 27 July 2007, 09:59 am GMT +0200
olaf
Fri 27 July 2007, 10:06 am GMT +0200
yeah and all this info for free :) I love the internet ;D
PHPNewbie-KY
Fri 27 July 2007, 05:21 pm GMT +0200
Start Slowly....
Do lots of research.....
Use a separate CSS file....
Read previous post.....
Look for sites that use CSS and learn from them (that's how I did it)....
WhiteEagle
Sat 28 July 2007, 02:40 am GMT +0200
Thanks all. I'll post here or I'll ask designer and Meth0d if I need help.
olaf
Sat 28 July 2007, 07:40 am GMT +0200
... or I'll ask designer and Meth0d if I need help.
don't ask, read first ;)
GiorgosK
Sat 28 July 2007, 07:48 am GMT +0200
Thanks all. I'll post here or I'll ask designer and Meth0d if I need help.
Yes go ask designer and Method since they were the ones answering your thread question ...
designer
Sat 28 July 2007, 11:48 am GMT +0200
You can start making it on your own Nate, then if you encounter parts you need to understand more of, you can ask it here so everybody can help out... As one signature says, "Trial and Error are my two best teachers"... Good luck on learning to Theme!
jemgames
Thu 11 October 2007, 09:16 am GMT +0200
Your best bet is to use the CSS float and width properties, then apply them on div tags, so, for a section that would stay at the left, use <div class="leftbox"></div> then in css put #leftbox { float: left;}
Easy!
WhiteEagle
Fri 12 October 2007, 09:08 pm GMT +0200
Thanks jemgames! Might use that, if I ever decide to code a website...;)