Squarespace-Schulung: Unterstreichungen bei Hyperlinks entfernen [Code bereitgestellt]
Der gesamte Code zum Entfernen der Unterstreichung aus allen Textelementen auf Ihrer Website.
// Removes underline from headings h1 a, h2 a, h3 a, h4 a { text-decoration: none !important; } // Removes underline from Paragraph 1 text .sqsrte-large a { text-decoration: none !important; } // Removes underline from all paragraph text p a { text-decoration: none !important; } // Removes underline from monospace code a { text-decoration: none !important; } // Removes underline from footer p text Footer p a text-decoration: none !important; }
Unterstreichungen aus Überschriften entfernen
Der folgende Code entfernt den Code nur aus ALLEN Überschriftenstilen.
// Removes underline from headings h1 a, h2 a, h3 a, h4 a { text-decoration: none !important; }
Unterstreichungen aus Absätzen entfernen
Der folgende Code entfernt nur Code aus ALLEN Absatzformaten.
// Removes underline from all paragraph text p a { text-decoration: none !important; }
Der folgende Code entfernt den Code aus den Stilen Paragraph 1 und Monospace (auf diese Weise behält der normale Absatztext auf Ihrer Website die Unterstreichung).
// Removes underline from Paragraph 1 text .sqsrte-large a { text-decoration: none !important; } // Removes underline from monospace code a { text-decoration: none !important; }
Unterstrich in der Fußzeile entfernen
Und dies könnte die wichtigste Codezeile sein! Dieser Code entfernt die Unterstreichung von Hyperlinks für jeden Absatztext in Ihrer Fußzeile. Wenn Sie dies für Überschriften oder Raumfahrt/Codetext tun möchten, fügen Sie einfach das Wort Footer vor dem Code (oben) hinzu, der auf die Elemente abzielt, die Sie anpassen möchten.
// Removes underline from footer p text Footer p a text-decoration: none !important; }