Format space around separator in breadcrumb
-
This is a minor thing, but driving me nuts. I finally figured out how to implement TSF breadcrumbs so I can drop a breadcrumb plugin. To me the space around the separator looks too large. It is implemented by TSF with inline code I’m not familiar with, in style tags after the actual elements:
<style>nav.tsf-breadcrumb ol{display:inline;list-style:none;margin-inline-start:0}nav.tsf-breadcrumb ol li{display:inline}nav.tsf-breadcrumb ol li:not(:last-child)::after{content:'?';margin-inline-end:1ch;margin-inline-start:1ch}</style>
I’m trying to override it in a stylesheet as follows, but it doesn’t work. Maybe all that stuff in the selector after
li
messes it up?nav.tsf-breadcrumb ol li:not(:last-child)::after { margin-inline-start: 0.5ch !important; margin-inline-end: 0.5ch !important; }
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Format space around separator in breadcrumb’ is closed to new replies.