Fonts
Silpion
Registered Users Posts: 20 Big grins
I was wondering if anyone knew how to change the size or style of the font used for the breadcrumb? On my site you will see that the breadcrumb looks to small and a little jagged. On the other site below the breadcrumb looks much nicer.
Rich
Rich
Th4t 1s a C4ctu$ → ψ
0
Comments
.sm-breadcrumb-item, .sm-breadcrumb-item h1 {
font-family: Arial;
font-size: 40px;
}
I'd suggest not using the exact code, but changing the size at least. And if you want to have the gallery or folder name, the last link in the breadcrumb still be larger then the rest of it use two separate bits of code. like this:
.sm-breadcrumb-item {
font-family: Arial;
font-size: 40px;
}
.sm-breadcrumb-item h1 {
font-family: Arial;
font-size: 40px;
}
the second bit with the h1 will control the last bit of the breadcrumb.
Support Hero and Customeister
http://www.smugmug.com/help
Cheers for the reply.