Forum breadcrumbs – You are here:Asgaros Support ForumSupportFont Colors
Please or Register to create posts and topics.

Font Colors

Hi,

Thank you for this easy, complete and good looking forum.

I am using it on a Wordpress website with a dark background, and on this background, the navigation line and the topic title are slightly visible. When I make the color of the font lighter, then the text of the posts goes lighter as well and the posts are not clearly readable. (see the attached print screen)

Is there any way to change the color of the font of the navigation and title only ? And keep the color of the font of the posts as it is ?

Thank you

Uploaded files:
  • Screen-Shot-2021-03-29-at-10.29.12-AM.png

Hey @patrick-lib,

you can change nearly every color by using CSS. If you want to change the color of the breadcrumbs you can use the following CSS:

#af-wrapper #forum-breadcrumbs span {
    color: red !important;
}

To change the heading you can use the following code:

#af-wrapper h1.main-title{
  color: red;
}

Just change the color to preferred color and insert it into: “Forum”->”Appearance”->”Custom CSS”.

If you want to change another color, just let me know.

Uploaded files:
  • Screenshot_20210330_091423.png
  • Screenshot_20210330_091818.png
patrick.lib has reacted to this post.
patrick.lib
Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.

Hi @qualmy91,

Thank you very much for the fast and documented answer.

It worked immediately well.

If I may ask, what should I add to make the Breadcrumb a little bigger and the Title bold ?

thank you

 

Hey @patrick-lib,

to change the size of the breadcrumbs, just add font-size to the first CSS:

#af-wrapper #forum-breadcrumbs span {
    color: red !important;
    font-size: 20px;
}

And to make the title bold add font-weight:

#af-wrapper h1.main-title{
  color: red;
  font-weight: bold;
}

 

Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.

Hi @qualmy91,

Thank you so much for this quick answer.

It worked and now the forum looks exactly as  I was hoping.

qualmy91 has reacted to this post.
qualmy91