YAFLogo

jpweber
  • jpweber
  • 94.4% (Exalted)
  • YAF Commander Topic Starter
12 years ago
Hello! For instance, the breadcrumbs in this forum:

Yet Another Forum.NET » YAF Forum Discussions » YAF General » Post New Topic

Where can I control the font, size, and boldness of the breadcrumbs? I'd like to make mine larger, and put some style in there, but I cannot find out where they're located.

Any help would be appreciated! Thanks!


Jason Weber

USS Vision YAF 

"Money is better than poverty, if only for financial reasons"

Sponsor
Thantis
  • Thantis
  • 81.8% (Honored)
  • YAF Commander
12 years ago
I believe all that should be changeable in the theme.css of the theme you are using. ~/themes/'your theme'/theme.css.
jpweber
  • jpweber
  • 94.4% (Exalted)
  • YAF Commander Topic Starter
12 years ago
Got it! Thanks once again, Thantis .... you've answered every one of my posts today! Hopefully, I'm not being a bother ... I'm just really enjoying learning how YAF works, and thanks to you and others like you, I'm beginning to really enjoy YAF.

Thank you once again for your help, this time regarding the breadcrumb question!

Just to elaborate on what Thantis said and for future reference if anyone else wants to change the size or color or whatever of their breadcrumbs, you go to your theme/theme.css, and find these lines (I added what I highlighted to make the font size 120% and bold):

/* div at the top of pages with navigation links */

.yafnet .yafPageLink

{

border: solid 1px #ffffff;

-moz-border-radius: 0.4em;

-webkit-border-radius: 0.4em;

border-radius: 0.4em;

font-weight: bold;

color: #000000;

margin-top: 10px;

margin-bottom: 10px;

padding: 2px;

}

.yafnet .yafPageLink a{ color: #000000; text-decoration: none; font-size:120%; font-weight:bold; }

.yafnet .yafPageLink a:first-child{ padding-left:13px; }

.yafnet .yafPageLink .currentPageLink { color: blue; font-size:120%; font-weight:bold; }

.yafnet .yafPageLink .linkSeperator { color: #666666; }

.yafnet .yafPageLink a:hover {color: red; }

/* for printing */


Jason Weber

USS Vision YAF 

"Money is better than poverty, if only for financial reasons"

Thantis
  • Thantis
  • 81.8% (Honored)
  • YAF Commander
12 years ago
Not a problem, I figure if I can help it will take some of the load off the guys who deal with the hard stuff.