kann mir von euch jemand sagen, wo genau ich die Linkfarbe für Posts ändern kann? Ich hätte gerne, dass die Links innerhalb der Post gepunktet unterlegt sind.
Vielen Dank für Eure Hilfe

LG
Code: Alles auswählen
.postlink:hover {
color: #c20031;
}
Code: Alles auswählen
.postlink-local {
color: #666;
text-decoration: none;
}
.postlink-local:visited {
color: #888;
}
.postlink-local:hover {
color: #c20031;
}
Code: Alles auswählen
.postlink:hover {
text-decoration: none;
color: #c20031;
}
Code: Alles auswählen
.postlink-local {
border-bottom: 1px dotted #666;
text-decoration: none;
color: #666;
}
.postlink-local:hover {
text-decoration: none;
color: #c20031;
}
border-bottom: ....
Code: Alles auswählen
.postlink {
border-bottom: 1px dotted #666;
text-decoration: none;
color: #666;
}
.postlink:hover {
text-decoration: none;
color: #c20031;
}
background-color: #deinFarbwert;
zusätzlich möglich.