link node color background

Adam Howard

Well-known member
I had this problem once before and it took me forever to figure out.

2012-10-10 15:44:59.webp

Notice the node titled "Exit Test Site" and how it's a dark color. I'm trying to get it to match the rest of the nodes.

The node in question is a "link node" or commonly known as a "forum link".

They key point is to do this only through extra.css
 
I had this problem once before and it took me forever to figure out.

View attachment 35427

Notice the node titled "Exit Test Site" and how it's a dark color. I'm trying to get it to match the rest of the nodes.

The node in question is a "link node" or commonly known as a "forum link".

They key point is to do this only through extra.css

Code your looking at is .nodeList .linkNodeInfo (bottom) The top part alters all nodes like page node link and standard forums.

Code:
.nodeList .categoryForumNodeInfo, .nodeList .forumNodeInfo, .nodeList .pageNodeInfo, .nodeList .linkNodeInfo {
    background-color: #FCFCFF;
    border-bottom: 1px solid #D7EDFC;
    padding: 0;
}
Code:
.nodeList .linkNodeInfo {
    background-color: #FF0000;
    border-bottom: 1px solid #D7EDFC;
    padding: 0;
}
 
Code your looking at is .nodeList .linkNodeInfo (bottom) The top part alters all nodes like page node link and standard forums.

Code:
.nodeList .categoryForumNodeInfo, .nodeList .forumNodeInfo, .nodeList .pageNodeInfo, .nodeList .linkNodeInfo {
    background-color: #FCFCFF;
    border-bottom: 1px solid #D7EDFC;
    padding: 0;
}
Code:
.nodeList .linkNodeInfo {
    background-color: #FF0000;
    border-bottom: 1px solid #D7EDFC;
    padding: 0;
}
That's what I thought and tried to use before asking.... huh .... Didn't work though :(
 
Top Bottom