Today I switched to X Theme (finally had some time) and I am converting my old site to the theme.
I had a code to display a hover window with extended information and did this via ‘span’ and CSS
CSS:
.tooltip:hover span {
display:inline;
position:absolute;
border: 2px inset #2E9DC2;
background: none repeat scroll 0% 0% rgb(38, 38, 38);
text-shadow: 2px 0 0 rgba(23, 23, 23, 0.9);
color: rgb(219, 219, 219);
z-index: 99;
-moz-border-radius: 5px;
border-radius: 5px;
width:420px;
margin: 10px 10px 10px 10px;
padding: 10px 10px 10px 10px;
text-align: left;
}
.tooltip span {
display:none;
}
and this html (How do you add code here?)

So if you hovered over the
- player.addperk be127 : adds the Alchemist perk
a window popped up with the information “Alchemist…Potions and poisons you make are 20% stronger.”
I just can’t get this to work using the x-theme. All text inside the ‘li’ disappears, any ideas?
Thanks for reading.
