XF 2.3 Colour change of navigation forum landing page text

TBB-AU

New member
Hi forum community,

I have two questions in regards to the circles in red.

I've been looking into the community and could not find what it would be called. I'm a newbie forum builder

1000005123.webp

1) How do I change the navigation title colour "The black book forum title"

2) "FORUMS" next to the logo appear in certain devices? Is this part of the logo header? Can this be change to say something else?

I'm.just confused and been reading what to do.

Thanks in advance for your help.

Kind regards
 
Looks like you are using a custom style. You would need to interrogate your code (F12) to find the correct class or ask the dev who created the style but I did a quick console check.

bbau1.webp

bbau2.webp

Try these one at a time in your extra.less template. I can't test these & CSS is not my strong point.

CSS:
.block-tabHeader.tabs.hScroller (
     color: hotpink;
}

CSS:
.hScroller-scroll.is-calculated (
     color: hotpink;
}

This is the default XF style.

xen1.webp
 
Looked @ your html code. And I think I made it too hard but I may be wrong but I'm trying. As I stated before CSS is not my strong point... :)

bbau3.webp
Try this in your extra.less template. Adjust hot pink as needed.
CSS:
.p-title-value (
     color: hotpink;
}
 
Last edited:
Back
Top Bottom