XF 1.3 Changing Visitor Panel Background Color

Jeff Fuqua

Well-known member
I've found in style properties a way to change the color under the username and stats but not the block itself. I was able to change all others on the sidebar under the visitor panel block.

Thanks.
 
Style Properties > Building Blocks > Secondary Content

That would change so many things on the website.

I've found in style properties a way to change the color under the username and stats but not the block itself. I was able to change all others on the sidebar under the visitor panel block.

Thanks.


You can use this in extra.css:

Code:
.visitorPanel .secondaryContent
{
background-color: #000;
}
 
Top Bottom