johnmindala 0 Report post Posted March 2, 2011 Which part of the CSS controls the breadcrumb font? I'm simply trying to lowercase the breadcrumb text from ALL CAPS to lowercase and decrease the letter-spacing. Example: HOME > NEXT PAGE > YOU ARE HERE to Home > Next Page > You are here Share this post Link to post Share on other sites
cmunns 16 Report post Posted March 2, 2011 `#breadcrumb .content a {text-transform:capitalize;}` Share this post Link to post Share on other sites
johnmindala 0 Report post Posted March 3, 2011 Ok, getting closer.... changing it to "none" corrected the problem for breadcrumb links, but not for the breadcrumb text that are not links: #breadcrumb .content a {text-transform:none; font-size:.9em; letter-spacing:normal;} looks like this now: Home > Next Page > YOU ARE HERE How do I get the "YOU ARE HERE" uncapitalized? Share this post Link to post Share on other sites
Andrew 207 Report post Posted March 3, 2011 John, Use Firebug to get the rule you need: http://www.pagelines.com/docs/changing-colors-fonts I think its a `span` tag or something like that. Share this post Link to post Share on other sites
schenkelc 0 Report post Posted November 24, 2011 I have the same problem. I looks like: Home > Next Page > YOU ARE HERE Any solution to this problem? Share this post Link to post Share on other sites
catrina 103 Report post Posted November 25, 2011 Have you already tried adding this code to Custom Code > Custom CSS?: [code]#breadcrumb .content a {text-transform: none;} [/code] Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites