*Zwei-Sterne-User*
Servus, kann mir jemand sagen wir der Code aussieht, wenn ich zB. den Verweise X blau haben möchte und den Verweis Y Rot?
Ich möchte, dass zB [author](rot) die Farbe rot hat, und die restlichen Links blau..
Das Problem ist, dass ich nur dieses hier kenne:
Und die platziert man ja seperat. geht das irgendwie mit einem <div=style:"blablabla">Link</div>??
Danke
Code:
[FONT=Arial][COLOR=Black][I]<style type="text/css">[/I][I]
a:link { font-weight:bold; color:blue; text-decoration:none; }
a:visited { font-weight:bold; color:silver; text-decoration:none; }
a:hover { font-weight:bold; color:green; text-decoration:none; }
[/I][I]</style>[/I]
<div style="margin-bottom: 0px; min-height: 130px; color: black;">
<h2 style="margin-bottom: 0pt"><a href="{article_href}" style="text-decoration: none;">{title}</a></h2>
<h3><em>{sub_title}</em></h3>
<h4 style="margin: 0 0 0 0em; font-weight: normal;";>Posted by <a href="#">[color=red]{author}[/color]</a> on {date}</h4>
<span style="float: right"><a href="{image_location}">{image}</a></span>
{main_article}
{extended_article}
<div id="comments" style="text-align: right; clear: both;">
<strong><a href="{article_href}#comments">{comment_count} comments</a></strong>
</div>
</div>[/COLOR][/FONT]
Ich möchte, dass zB [author](rot) die Farbe rot hat, und die restlichen Links blau..
Das Problem ist, dass ich nur dieses hier kenne:
Code:
a:link { font-weight:bold; color:blue; text-decoration:none; }
a:visited { font-weight:bold; color:silver; text-decoration:none; }
a:focus { font-weight:bold; color:red; text-decoration:underline; }
a:hover { font-weight:bold; color:green; text-decoration:none; }
a:active { font-weight:bold; color:lime; text-decoration:underline; }
Danke