Originally posted by Super-Supra
I Dont even know what you meant by CSS.
Cascading
Style
Sheets... they're the new way to format and layout webpages.
This might be more than you want to listen to, but anyway:
Way back when, HTML was designed to be easy for anybody to do... if you wanted to change a text's color (listen up!
), you'd do something logical, like:
<font color="CCFFFF">This is colored text! Yay!</font>
... and thus anybody could easily put a webpage together.
However, as webpages started getting bigger and more complicated, and as designers wanted to refine or even totally remake the design of their pages (been there, done that), there came a point when doing that stuff was a pain in the you-know-where. It was difficult to update-- Can you imagine having a company website compiled of 50 or so webpages, and suddenly your boss wanted all of the headers to be navy blue and 18px instead of red and 16px? That would be a royal pain in the... yeah.
So, someone really smart developed the idea of a Style Sheet, one central document that gets "attached" to every single page on the website.
As an example, we can look at GTPlanet... you'll notice if you look at the source code that near the top is the following snippet:
<link href="
/style.css" rel="stylesheet" type="text/css">
The bold text indicates the style sheet and it's relative position (if you don't know what relative positioning is, I'll save that for another lesson). Anyway, using that bit of information, we can easily find GTP's style sheet
right here.
This is where all of the data for GTP's font colors, font sizes, table backgrounds, all of that good stuff is located.
Now that you have a general idea of what a Style Sheet
is, I'll leave it up to you to research it (it's just as easy as HTML, trust me).