XF 1.4 Category Strip Title Color

Craig

Active member
Good evening to all.

I am wondering how I would change the color of the Category Strip Title for only ONE category.
I already know how to change the color for all for all of the Categories.

Thank you in advance!
 
Something like this (put it into extra.css)
Change category number with your desired category

Code:
/* START Obavijesti */
.nodeList  .node_505 .categoryStrip {
    background-color: #e26778;
    border-top: 1px solid #e26778;
    border-bottom: 1px solid #e26778; }

.nodeList .node_505 .categoryStrip .nodeTitle a {
    color: #07031d; }
/* END Pofarbana kategorija Obavijesti */
 
Something like this (put it into extra.css)
Change category number with your desired category

Code:
/* START Obavijesti */
.nodeList  .node_505 .categoryStrip {
    background-color: #e26778;
    border-top: 1px solid #e26778;
    border-bottom: 1px solid #e26778; }

.nodeList .node_505 .categoryStrip .nodeTitle a {
    color: #07031d; }
/* END Pofarbana kategorija Obavijesti */
Thanks for the code! It worked like a charm!!
 
Top Bottom