Neu custom.css

Holmes

Gut bekanntes Mitglied
10. Februar 2020
291
6
Hallo,
hier mal meine custom.css verstehe etwas nicht obwohl ich im!important nutze überschreibt er nicht alles z.B. nicht die Artikelbeschreibung und nicht die anderen Sprachen die wir
noch im shop haben, wie kann das sein !important ist doch das höchste. Also ich meine die schriftart soll georgia sein aber manchmal nimmt er einfach Times New Roman obwohl gleicher rechner und Times New Roman steht an
2 stelle.

/* Artikelnamen h1 andere Farbe */
#main-wrapper h1 {
color: #332A93 !important;
}

/* Schriftart und größe */
p {
font-size: 16px !important;
font-family: Georgia, "Times New Roman", Times, serif !important;
}

h1, h2, h3, h4, h5, h6 {
font-family: Georgia, "Times New Roman", Times, serif !important;
}


Vielen Dank

Holmes
 

Holmes

Gut bekanntes Mitglied
10. Februar 2020
291
6
Hallo,
habe es abgeändert bringt ein wenig was, aber es sind nicht alle h Überschriften georgia.

/* Artikelnamen h1 andere Farbe */
#main-wrapper h1 {
color: #332A93 !important;
}

/* Schriftart und größe */
#main-wrapper p {
font-size: 16px !important;
font-family: Georgia, "Times New Roman", Times, serif !important;
}

#main-wrapper h1, h2, h3, h4, h5, h6 {
font-family: Georgia, "Times New Roman", Times, serif !important;
}