Where/What is the CSS for this?

Liam23

Active member
Where/What is the CSS for this?
download (11).webp
I want to change the colors and what not. But I don't know the CSS for it.
Chrome's Inspect Element doesn't seem to work :(
 
If you download firefox or waterfox there's a plugin called firebug. There's an option where you can click any portion of the site and it'll tell you the css/html/scripts etc.
 
Code:
.discussionList .sectionHeaders {
font-size: 11px;
color: #6D3F03;
background: #F9D9B0 url('styles/default/xenforo/gradients/category-23px-light.png') repeat-x top;
padding: 5px 10px;
margin: 3px auto 0;
border-top: 1px solid #F9D9B0;
border-bottom: 1px solid #F9BC6D;
}
.discussionList .sectionHeaders, .discussionListItem {
display: table;
table-layout: fixed;
width: 100%;
word-wrap: normal;
}

You can modify it in the style properties (That way it'll cover all instances where its used).
 
Code:
.discussionList .sectionHeaders {
font-size: 11px;
color: #6D3F03;
background: #F9D9B0 url('styles/default/xenforo/gradients/category-23px-light.png') repeat-x top;
padding: 5px 10px;
margin: 3px auto 0;
border-top: 1px solid #F9D9B0;
border-bottom: 1px solid #F9BC6D;
}
.discussionList .sectionHeaders, .discussionListItem {
display: table;
table-layout: fixed;
width: 100%;
word-wrap: normal;
}

You can modify it in the style properties (That way it'll cover all instances where its used).
Where do I edit the hover css?
 
Top Bottom