CSS Help?

King

Veteran XV
I've got everything working great except for one thing. What I need is whenever in the html it sees the copyright symbol, it will switch over to the copyright info in the css file. I'm not sure how to define it.

Example, right now the copyright info looks like this in the CSS.




Code:
copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: xx-small;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}



Thanks in advance for any help. Any questions? Let me know, thanks!
 
I'm not sure you can do that in HTML. I didn't ever look much into CSS so forgive me about my lack of CSS coding knowledge, but why not just do something like:

<table ... css-style: [insert css name]>

Isn't that how you do most other CSS definitions? Except the right syntax. If you wanted something like this, I don't think you can do it in pure HTML but I might be wrong:

if(copyright.symbol.is.found)
[turn on css]
 
Back
Top