the breadcrumbs are rather small, so i created a css file called breadcrumb.css with the following:
ul.breadcrumbs {
font-size: 2rem;
margin : 60px 16px;
padding: 15px 0 15px;
text-align: left;
}
it seems to do nothing. how do i just make them larger? change the color would be nice, but it can’t seem to get that to work. i search through the archives but it isn’t very clear.
thanks,
john
(my website is www.joliverbrooks.com)
The breadcrumb hyperlink color is the same as what you choose in the page template in Colors > Accent. This applies to all text hyperlinks on the page.
You can control the hyperlink :hover color in the Typography section.
If you want the breadcrumb colors to be different than the other hyperlinks, then you can do that with custom css:
ul.breadcrumbs li a {
color: red;
}
ul.breadcrumbs li a:hover {
color: green;
}
thanks. i did specify the wrong file.
i fixed that and put it in custom-sample.css. however the code below still doesn’t seem to change the breadcrumbs. (i put in 5rem to see if it is noticeable, but other values don’t change it).
ul.breadcrumbs {
font-size: 5rem;
margin : 60px 16px;
padding: 15px 0 15px;
text-align: left;
}
ul.breadcrumbs li a:hover {
color: blue;
}