nur bei manchen links

Status
Nicht offen für weitere Antworten.

mike4004

Erfahrenes Mitglied
hi

Wie mach ich das am besten das nur bei manchen links ein mouseover ist und bei anderen nicht?

ich habe es schon mit zwei sachen probiert aber es geht einfach nicht!
danke für die Antwort


Code:
<style type="text/css">
<!--
a:link, a:visited
{
text-decoration: none; 
color: #750d16;
font-family: Harrington; 
font-size: 20pt; 
background: #FF9900; 
}

a:hover 
{
text-decoration: bold; 
color: #FF9900;
font-family: Harrington; 
font-size: 20pt; 
background: #750d16;
}

a:active 
{ 
color: #750d16;
font-family:Harrington; 
font-size: 20pt; 
background: #FF9900;
}
.Stil1 {font-family: Thaoma}
.Stil2 {font-family: Tahoma}
.Stil3 {font-size: 22px}
.Stil4 {
	color: #750D16;
	font-size: 18px;
	font-family: Tahoma;
}
.Stil5 {font-size: 20px}
.Stil6 {
	font-family: Harrington;
	color: #750D16;
	font-weight: bold;
	font-size: 22px;
}
.Stil7 {font-size: 18px}
.Stil8 {color: #750D16}
.Stil9 {font-weight: bold}
-->
</style>
 
Zuletzt bearbeitet:
Kleiner Codeschnippsel:

Code:
a.klasse1 {
    // Style
}

a:hover.klasse1 {
    /Style
}

a.klasse2 {
    //Style
}

reicht dir das als denkanstoss oder habe ich dich falsch verstanden?
 
Na du musst dann folgendes beim Link machen:

Code:
<a href="irgendwohin.php" class="klasse1">Link</a>

Und was soll ich dir zeigen wie du es im CSS machen sollst?
Nächstes mal bitte nicht so fordernt, klar?!
 
Ja danke ich bin froh das du mir hilfst.

ich habe es jetzt so gemacht aber wenn ich es im link so öffen erhalte ich einen syntax fehler

Code:
<p align="left"><a href="index.htm" onmouseover="" class ="a.klasse1"  status='Home';return true;"onmouseout="status=''"width="156">Home</a></p></td>

Code:
<style type="text/css">
<!--
a.klasse1 
{
text-decoration: none; 
color: #750d16;
font-family: Harrington; 
font-size: 20pt; 
background: #FF9900; 
}
a.klasse2
{
text-decoration: none;
color: #750d16;
font-family: Harrington;
font-size: 20pt;
background: #FF9900

}
a:hover.klasse1
{
text-decoration: bold; 
color: #FF9900;
font-family: Harrington; 
font-size: 20pt; 
background: #750d16;
}

a.klasse3
{ 
color: #750d16;
font-family:Harrington; 
font-size: 20pt; 
background: #FF9900;
}
.Stil1 {font-family: Thaoma}
.Stil2 {font-family: Tahoma}
.Stil3 {font-size: 22px}
.Stil4 {
	color: #750D16;
	font-size: 18px;
	font-family: Tahoma;
}
.Stil5 {font-size: 20px}
.Stil6 {
	font-family: Harrington;
	color: #750D16;
	font-weight: bold;
	font-size: 22px;
}
.Stil7 {font-size: 18px}
.Stil8 {color: #750D16}
.Stil9 {font-weight: bold}
-->
</style>
 
Zuletzt bearbeitet:
Okay, schön das ich helfen konnte!

Dann markier den Thread bitte noch als erledigt!

DANKE!
 
Status
Nicht offen für weitere Antworten.
Zurück