Forum Moderators: not2easy
<html>
<body>
<CSS 1>
header
</CSS 1>
<CSS 2>
forum
</CSS 2>
<CSS 1>
footer
</CSS 1>
</body>
</html>
I'm trying to wrap my forum so it looks like the rest of the site.
Why not just stick it all into one css file? Just use different id's and classes. I forget which one cant be used more than once for the same element. I think its id. You can use a class as many times as you want. I think. Hopefully someone will clarify this.
:)
Just do <div class="style1"></div>
<div class="style2"></div>
<div class="style3"></div>
<div class="style4"></div>
although the names of the classes should be semantic idealy... so bad names would be "style5","blueborder" or "smallfont", good ones "noticemessage", or "headingarea".
in your css file, you can then put the rules:
.style1{font-family:Arial;color:blue;background-color:pink}
.style1 form{border:blue}
.style1 a{font-family:courier;color:purple;text-decoration:none}
All content mentioned in a style cascades down into child elements... it is quite simple to use.