Styling Questions

Peggy

Well-known member
I have at least 3 areas on my forum where I cannot find where to change the colors.

Please see the screenies below, and find it in your kind heart to help me out. (wow that sounds like a suck-up).

TIA!

Forum list inside a category:
forumlist.webp

Quote background:
quote.webp

Quote "header" strip (don't know the name for this):
quote_head.webp

Thanks again!
 
Style Properties -> General -> Body: Font Family

However, that won't change everything; you will need to change it in a few other places too. Just go through the Style Properties and adjust any instances as required.
 
One thing I cannot find. The Followers block in the profile -

profblock.webp

I can't find where to change the font color for the strip.
I've been through every style properties setting on this style, that nothing has that font color.
 
Add this to EXTRA.css

Code:
.textWithCount.subHeading .text {
color: @primaryLighter !important;
}

Change the colour to suit.

If you want to change the font colour of the number, it's this class: .textWithCount.subHeading .count

So both together it would be:

Code:
.textWithCount.subHeading .text,
.textWithCount.subHeading .count {
color: @primaryLighter !important;
}

 
Thanks Brogan - one more think and I'll give you a much needed break. :p

Where do I change the border color surrounding the Edit block. ugh I don't know what it's called, so included a screenie.

edit.webp
 
hmmm... I've looked at the button color, then looked for the background color under buttons and call to action buttons, and neither color is the same as that Post Reply button.
So I'm trying to find it.
 
so you can't style that button in style properties?
That's odd.

Thanks Brogan. We're populating my EXTRA.css so much that it's going to burst at the seams! :LOL:
 
Top Bottom