Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
The breadcrumbs font size on my album pages is about 12px instead of 18px as written in the page template "Breadcrumbs appear in albums and album sets, at a base height of 18px."
To temporarily fix this I have set
span {
font-size: 16px;
}
in my custom.css file - just wonder if there is an issue with that..?
Regards
HP
Any typos are due to fat thumbs and autocorrect, not low IQ.
Offline
even though it says there's a base size of 18px in the template, I think it might actually be 16px.
The css shows that the breadcrumb list items are set to .75rem (12px)
I wouldn't use span for this because you're affecting all span elements. Instead, try this:
ul.breadcrumbs li {
font-size: 1rem;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Breadcrumbs appear in albums and album sets, at a base height of 18px.
HEIGHT. Not font-size. If padding is zero, then the lettering (12px) and surrounding negative space will occupy a total 18-pixels. You can then apply padding for desired effect; for example, if I want to keep a consist 48-pixel measure for the breadcrumbs bar, matching the top-pallet, horizontal navigation and other UI elements, then I'd add 15-pixels to the padding-top and bottom.
Offline
Pages: 1