XF 1.2 how to give Link Forum different colour

aiman.h.kallaf

Active member
Greeting to all
I'd like to give ( Link Forum ) that are shown on the forum list a different color

How can this be done Using extra
 
you could add in a nodeID in with the classes (yours would differ) you would just need to insert your link forum ID, and choice of colour.

Code:
.node .node_31 .linkNodeInfo .nodeTitle a {color: red;}
.node .node_31 .linkNodeInfo .nodeDescription {color: green;}

You actually don't have to have the linknodeinfo class in. This would work also remembering to insert the nodeID

Code:
.node .node_31  .nodeTitle a {color: red;}
.node .node_31  .nodeDescription {color: green;}



Screenshot_2.webp
 
you could add in a nodeID in with the classes (yours would differ) you would just need to insert your link forum ID, and choice of colour.

Code:
.node .node_31 .linkNodeInfo .nodeTitle a {color: red;}
.node .node_31 .linkNodeInfo .nodeDescription {color: green;}

You actually don't have to have the linknodeinfo class in. This would work also remembering to insert the nodeID

Code:
.node .node_31  .nodeTitle a {color: red;}
.node .node_31  .nodeDescription {color: green;}



View attachment 61731
thank you shelly , but is there anyway to make it in one link or code , or at least put the node numbers in one line
because i have a pretty long list of link forum
 
was just about to post that just add the following in and it'll style all your link nodes

Code:
.node .linkNodeInfo .nodeTitle a {color: red;}
.node .linkNodeInfo .nodeDescription {color: green;}
 
was just about to post that just add the following in and it'll style all your link nodes

Code:
.node .linkNodeInfo .nodeTitle a {color: red;}
.node .linkNodeInfo .nodeDescription {color: green;}


thank you brogan and shelley , it worked partially ,
upload_2013-11-24_0-10-40.webp

some of the forums links are not included and colored
 
Top Bottom