XF 1.5 Change nodeTitle colour

Hello I've searched and found a few ways to do this but none work for me. I can change 'all' the node title colours in a catagory with this code by Brogan (thank you)...

.node .nodeText .nodeTitle a
{
color: red;
}


...but can't work out how to apply it to one particular node. Any suggestions?
 
Hi @The West wind ,

You've put .node twice, if you remove the first .node it should work:
Code:
.node_20 .nodeText .nodeTitle a
{
color: #800000;
}

You can also try this instead:
Code:
.node_20 h3.nodeTitle a {
color: #800000;
}
 
Hello, I've tried both and it still wont work. Removing the _20 from both snippets changes the colour of all the node titles perfectly. I've double checked the node I need changing is the correct display order. If .node_20 is the correct syntax I'm stumped
 
My forum isn't online. I'm hoping to get it live tomorrow pm. The following is all I have in EXTRA.css


.titleBar { display:none; }


.forum_list .breadBoxTop {
display: none;
}

.forum_list .breadBoxBottom {
display: none;
}
 
Thanks Brogan. I've tried it again and once more the code without the _x works but changes all the nodeTitles as it should, but with the _x it has no effect. I've tried it on other nodes too with the same result.

I've no doubt the syntax is correct but for some reason beyond my savvy I can't get it to work.
 
Top Bottom