Re: Schriftgröße des Titels andern und Schriftgröße des Album Titels andern usw
Posted:
23 Feb 23, 09:56
in response to: proissl-braun
Here are the font sizes as the skin sets them. Copy / paste the following code block into the Settings / Tiger / Advanced / Custom code / CSS box, and edit the sizes to your like:
.folder .caption h3 { font-size: 20px; }
.hero header h1 { font-size: 32px }
.topnavigation nav > ul > li > a { 1em; }
/* Styles for screens wider than 640px */
@media screen and (min-width: 40rem) {
.folder .caption h3 { font-size: 20px; }
.hero header h1 { font-size: 40px }
}
Re: Schriftgröße des Titels andern und Schriftgröße des Album Titels andern usw
Posted:
23 Feb 23, 09:59
in response to: proissl-braun
The difference between the two solutions is that the latter changes the font sizes at specific places, while Jeff's solution works for every H1 and H3 tag that might appear in the album.
Re: Schriftgröße des Titels andern und Schriftgröße des Album Titels andern usw
Posted:
23 Feb 23, 14:56
in response to: Laza
Laza wrote:
The difference between the two solutions is that the latter changes the font sizes at specific places, while Jeff's solution works for every H1 and H3 tag that might appear in the album.
I suspect there aren't any others, or if there are, the user wants them all to be the same size.