I do agree, my hand-coded CSS is seriously lacking. I intend to read up and learn it properly. I usually use HTML instead of CSS - Which I know isn't good. If needed. I use Dreamweaver CS3 in order to code in CSS.
Thanks :)
Printable View
Learn full CSS before you claim to know it :)
But not everybody needs a program to do it for them? I use the "edit file" option in cPanel or notepad. And I can code CSS? It's all about remembering the codes. It's common logic to know about padding and margins etc. I would only use dreamweaver to code PHP due to all the commas and stuff you need to place there (As I'd forget them :P)
That's what I said. I need to use a application to help me with CSS, but I can still get the codes for it upon request. Reading about CSS and I've got this far on coding a basic CSS-based text-page.
Code:body {
background-image: url(images/bg.PNG);
font-family: Verdana;
font-size: 9px;
color: #000000;
}
a {
font-size: 9px;
color: #000000;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: none;
color: #000000;
}
a:active {
text-decoration: none;
color: #000000;
}
Well done, but thats as simple as CSS gets, wait until you start coding 4 collumn pages, gets much harder. Btw, when you hover over a link it won't change colour because you've set it to default colour same as black so use something like FFFFFF
Theres just extra css in there then. Don't offer the hover option :)