The tooltip issue
Posted: Thu Jun 20, 2013 12:41 pm
In the RPC frontpage the tooltips are overlapping the slideshow. Not a big deal, but still a bit annoying. This can be easily fixed, so Hunch or anyone with access to the CSS, find this:
And add z-index property:
And now it should work more properly.
Sorry if there is a topic where this could have been posted but I didn't notice.
Code: Select all
.infobulle{
position: absolute;
visibility : hidden;
border: 1px solid orange;
padding: 5px;
font-family:"lucida grande", tahoma, verdana, arial, sans-serif;
font-size: 11px;
text-align: justify;
background-color: #14190E;
width: 200px;
}Code: Select all
.infobulle{
position: absolute;
visibility : hidden;
border: 1px solid orange;
padding: 5px;
font-family:"lucida grande", tahoma, verdana, arial, sans-serif;
font-size: 11px;
text-align: justify;
background-color: #14190E;
width: 200px;
z-index: 100;
}Sorry if there is a topic where this could have been posted but I didn't notice.