XF 1.2 Styling tooltips

Matthew Hawley

Well-known member
I want the tooltips to be different for each node.

I tried this and it didn't work.

Code:
.node_8 .xenTooltip {
font-size: 11px;
color: white;
background-color: #E01B5D !important;
border: 1px solid rgba(0,0,0, 0.4);
padding: 5px 10px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-khtml-border-radius: 2px;
border-radius: 2px;
display: none;
z-index: 15000;
cursor: default;
background-image: -webkit-linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0));
background-image: -moz-linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0));
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

Any suggestions?
 
Last edited:
Try:

Code:
#nodeDescription-8
{
    // Your code here
}

WOO!!!

9HGsQfq.png

Thank you!
 
Top Bottom