Copy link to clipboard
Copied
Hallo,
ich probiere seit Stunden, wie ich das hinbekomme:
"Sie können für Hyperlinks die Schriftarten, Schriftgrade, Farben und andere Eigenschaften festlegen. Standardmäßig erstellt Dreamweaver CSS-Regeln für Hyperlinks und wendet sie auf alle Hyperlinks an, die Sie auf der Seite verwenden."
Ich schaffe es einfach nicht, dass die beiden letzten Links auf der Seite http://www.rockpopchor-schöneiche.de/musikfest_23 schwarz sind wie bei den beiden ersten Links...
Hat jemand eine Idee? Danke schon mal!
Copy link to clipboard
Copied
Currently what is the color of the last 2 links that you are seeing? - they look to be the same color as the first 2 links in Google Chrome browser and Safari browser?
Copy link to clipboard
Copied
Im Firefox sind die letzten beiden Links grün. Jetzt habe ich mir das im Safari angesehen, da wird es korrekt angezeigt.
Copy link to clipboard
Copied
Visited link styles come from your stylesheet.
a:visited {
color: rgba(0,0,0,1);
These styles are retained by the browser you used. Clear your browser's cache and data history to reset link styles.
Or simply change the link style color in your stylesheet.
a:link
a:visited
a:hover
a:active, a:focus
https://www.w3schools.com/css/css_link.asp
Copy link to clipboard
Copied
I'm not sure what to advise here as the code is from past times. Using inline font-color tags in the html and mixing embedded css is not going to work nicely. What created that code, it wasnt Dreamweaver, the page doesnt even have a doc type declaration, which is also not good for modern browsers?
Copy link to clipboard
Copied
Most likely the result of obsolete web software.
Copy link to clipboard
Copied
Ich bin eine dumme Nuss. Hab in den Firefox-Einstellungen festgelegt, dass besuchte Links grün sein sollen. Sorry und danke!