10389 Posts in 2200 Topics by 1712 members
| Go to End | ||
| Author | Topic: | 626 Views |
-
Re: Event_calendar --> showing $Event_Title on hover

29 January 2012 at 5:53am Last edited: 29 January 2012 5:54am
UDATE
Here's my next attempt.
<td class="$Today $OutOfMonth $CurrentDay $HasEvent">
<% if Events %>
$Number
<% control Events %>
<a href="$Event.Link" title="{$Event.Title} - {$Event.Conferencier}"></a>
<% end_control %>
<% else %>
<a href="" title="Pas d'évènements pour cette journée">$Number</a>
<% end_if %>
</td>if $Number is declared after <% if Events %>, it displays dates correctly. As pic below describes (more below pic)
But it causes problems:
1) as it has no <a href> it BLOCKS the hovering of the event under the numbering
2) therefore, cant be clicked to get to the $Event.Link nor hovered to access $Event.TitleSo i REALLY need to access that $Number INSIDE this
<% control Events %>
<a href="$Event.Link" title="{$Event.Title} - {$Event.Conferencier}">$Event.Number</a>
<% end_control %>is there such a thing as $Event.Number????
I cant use $Event.Dates because of repeating events (it displays ALL dates that the event occures).
-
Re: Event_calendar --> showing $Event_Title on hover

30 January 2012 at 6:38am Last edited: 30 January 2012 6:44am
Hi, still looking.... The code below....
<td class="$Today $OutOfMonth $CurrentDay $HasEvent">
<% if Events %>
$Number
<% control Events %>
<a href="$Event.Link" title="{$Event.Title} - {$Event.Conferencier}"></a>
<% end_control %>
<% else %>
<a href="" title="Pas d'évènements pour cette journée">$Number</a>
<% end_if %>
</td>returns this (which is ALMOST what i want), i.e. :
- shows $Event.Title on hover
- goes to $Event.Link when clickedProblem is this (see pic);
- i want whats in red to be clickable / hoverable
- actually, the code $Number (that works best that i can have it to....) correctly displays dates that has an event
BUT
- it blocks whats behind (<a href="$Event.Link" title="{$Event.Title} - {$Event.Conferencier}"></a>) to be clicked or hovered
RESULTS
only a tiny part (in blue) is actually clickable / hoverableQUESTION
Is there a way to MAKE that $Number data kinda "see-thru" via HTML?????
OR BETTER
to access that $Number INSIDE the <% control Event %> ??
Thanks!
| 626 Views | ||
| Go to Top |

