XF 1.2 .categoryStrip

wickedstangs

Well-known member
How do you change the .categoryStrip color using Extra.css and not the @PrimaryLighter?

Code:
.nodeList .categoryStrip {
color: #0C226B;
background: #0C226B;
border-top: 1px solid #0C226B;
border-bottom: 1px solid #0C226B;
border-bottom-color: #0C226B;
}
 
@Shelley firebug shows the same thing.. Doesn't show .
Code:
.nodeLastPost .DateTime
View attachment 52637

Indeed it does. This is where you apply a hierarchy in your code.

So the following I would use would be .nodeLastPost so it would look like the following example

Code:
.nodeLastpost .muted {color: red;}
or apply .username or one of the other elements having .nodeLastpost always infront of them.

Screenshot_15.webp
 
Top Bottom