Another question. I added extra div to the post. Now it looks like this:
<div data-theme-toc="true"> </div>
<div data-theme-profile="manual">
## Chapter 1
## Chapter 2
</div>
But the TOC is not visible in this case. How can it be fixed?
Another question. I added extra div to the post. Now it looks like this:
<div data-theme-toc="true"> </div>
<div data-theme-profile="manual">
## Chapter 1
## Chapter 2
</div>
But the TOC is not visible in this case. How can it be fixed?
Ich kenne deinen Zweck nicht, aber du kannst die Titel mit verschiedenen Methoden ansprechen.
Verwende HTML-Titel-Tags mit data-Attributen, wie z. B. <h1>Kapitel 1</h1>, damit du [data-header-1] mit CSS ansprechen kannst.
Füge eine leere Div mit einem data-Attribut an einer Stelle ein, die du zum Ansprechen nachfolgender Elemente verwenden kannst. Wenn du zum Beispiel <div></div> nach dem 2. Titel einfügst und dieses CSS hinzufügst:
[data-next-titles] ~ .d-toc-post-heading {
color: pink;
}
Wird daraus:
Es hängt also wirklich von deinem Ziel ab.
Diese Anleitung könnte hilfreich sein: Customize posts' contents with your own styles
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.