actually… I might work on a plugin for a style switcher. I know there’s already one out there, but I might make one that uses my method (javascript) as seen on: http://www.ajblog.uni.cc
Have to look at how plugins work and stuff first though.
OK… I know a little bit about CSS, not much, but I also like to use a GUI editor to edit CSS and give me all the colors and such. I reccomend TopStyle. Even the free version is great!
Also, some code posted above:
#header {
background: #696;
background-image: url('images/header.jpg');
background-repeat: no-repeat;
}
If you really want to break it down, then “background” in there should be “background-color.” Also, you saw it coming… the shorthand version simply combines these three tags into one, simple tag:
#header {
background: #696 url('images/header.jpg') no-repeat;
}
I actually find CSS pretty simple. You’ll find that most of the style names say exactly what you want them to say. (for instance, “color” changes the color of your font)