PDA

View Full Version : Mouseover Click to ToC


liqiud
12-13-2007, 07:14 PM
I love this calendar...and I've been using it for a while. I just installed on a new domain, and I couldn't remember if it's possible or not, but can you set the calendar up so that your clicks while mouseing over bring you to the monthly view instead of poping up a new window with just the event? Thanks in advance.

website - www.paintballgeex.com/nuke

ve9gra
12-13-2007, 09:10 PM
Edit block-Calendar.php and add the following line right before the last require
unset($epcAltLink); $epcAltLink="modules.php?name=Calendar";

That line should already be in the block-Calendar.php file that is included in the module.

liqiud
12-13-2007, 10:04 PM
when I do that, it turns off mouse over. I was hoping there was a way to do it with keeping the mouse over on

Brian
12-13-2007, 11:16 PM
You can't use both the mouse-overs and altLink feature at the same time.

ve9gra
12-14-2007, 06:07 AM
And to answer the other post you had about the navigation table... you have other CSS that affects those elements - as shown by the Web Developer Toolbar for Firefox.
http://www.paintballgeex.com/nuke/calendar/theme/default/esstyle.css
.navTableText (line 144)
{
font-family: Geneva,Verdana,Arial,sans-serif;
font-size: 9px;
font-weight: normal;
text-decoration: none;
color: #ffffff;
}

http://www.paintballgeex.com/nuke/themes/Flame/style/style.css
a:link (line 1)
{
font-size: 10px;
color: #a2a2a2;
font-family: Verdana,Arial,Helvetica,sans-serif;
text-decoration: none;
}

a:hover (line 55)
{
font-size: 10px;
color: #c5c5c5;
font-family: Verdana,Arial,Helvetica,sans-serif;
text-decoration: none;
}