Hinweis: Leere nach dem Veröffentlichen den Browser-Cache, um die Änderungen sehen zu können.
- Firefox/Safari: Umschalttaste drücken und gleichzeitig Aktualisieren anklicken oder entweder Strg+F5 oder Strg+R (⌘+R auf dem Mac) drücken
- Google Chrome: Umschalttaste+Strg+R (⌘+Umschalttaste+R auf dem Mac) drücken
- Internet Explorer/Edge: Strg+F5 drücken oder Strg drücken und gleichzeitig Aktualisieren anklicken
- Opera: Strg+F5
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/*Custom paragraph numbering */
.ns-0 #content {
counter-reset: para-counter;
/* Initialize the counter */
}
.ns-0 #content p {
counter-increment: para-counter;
/* Increase counter for each p */
}
.ns-0 #content p:before {
content: "("counter(para-counter) ") ";
/* Show the counter in brackets*/
font-weight:bold;
}
.ns-0 #content h2:nth-of-type(4) ~ p:before {
/* Stop numbering for heading 5*/
content:""
}
.ns-0.page-Hauptseite #content p:before,
/* No numbering on homepage*/
.ns-0 #content .footerbox p:before,
/* No numbering for footerbox*/
#content .ve-ce-branchNode p:before{
/* No numbering in edit mode*/
content: "";
/* No counter*/
}
/* Custom paragraph numbering PDF */
.pdfcreator-page-content {
counter-reset: paragraph-counter -1;
/* Initialize the counter */
}
.pdfcreator-page-content p {
counter-increment: paragraph-counter;
/* Increase counter for each p */
}
p:first-child::before {
/* Skip first paragraph above TOC */
content: "";
counter-increment: none;
}
/* Show numbering starting from the second paragraph */
.pdfcreator-page-content p:before {
content: "("counter(paragraph-counter)") ";
/* Show the counter in brackets*/
font-weight:bold;
/* Show number in bold */
}
.pdfcreator-page-content .footerbox p:before {
/* No numbering for footerbox*/
content:'';
}