Would it be possible to see the time of a show in a mouseover on the schedule?
I know i can just click it and see the info, but my finger is so weak, you know? Ok I’m just lazy …
Would it be possible to see the time of a show in a mouseover on the schedule?
I know i can just click it and see the info, but my finger is so weak, you know? Ok I’m just lazy …
Closing topic, you’re just lazy :itmejpangry:
j/k won’t close topic.
However we have to budget additional development so might not happen. Sorry!
My html and CSS maybe rusty, but not useless, and for free…
<!DOCTYPE html>
<html>
<style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #151f27; /* Tried to steal your color scheme */
color: #ed8913;
text-align: center;
border-radius: 7px;
padding: 6px 0;
/* Tooltip position */
position: absolute;
top: -5px;
left: 120%;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
<body style="text-align:center;">
<p>The text below is special:</p>
<div class="tooltip">Tickle me
<span class="tooltiptext">* SPARKLES *</span>
</div>
</body>
</html>
I don’t know the strings you use for time and timezones… but they would go where it * SPARKLES *
I am not expecting you to use this. Just saying, dev-senpai would do this in a minute or less
Would use it if I knew how to
I understand CSS and all that but PHP is nothing I know the slightest about.