- Posts: 9
- Thank you received: 0
Drop Down Menu won't work with Module displayed
-
mcdmedia
Inactive member - Topic Author
- New Member
Less
More
12 years 10 months ago #14703
by mcdmedia
Drop Down Menu won't work with Module displayed was created by mcdmedia
I am using the Hot Joomla Carousel Pro on a Hot Joomla Templates Destinations template.
When I enable the module inside an article it disables the top menu drop down from displaying
Here is a demo: www.tobinmcdonald.com/israelwithavi/sugg...raries/walking-trips
The "Suggested Itineraries" should have a drop down. If you click on 'home' and then on 'suggested itineraries' you will see the drop down.
Any help with this would be appreciated I just purchased the module on top of the template
When I enable the module inside an article it disables the top menu drop down from displaying
Here is a demo: www.tobinmcdonald.com/israelwithavi/sugg...raries/walking-trips
The "Suggested Itineraries" should have a drop down. If you click on 'home' and then on 'suggested itineraries' you will see the drop down.
Any help with this would be appreciated I just purchased the module on top of the template
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6744
- Thank you received: 716
12 years 10 months ago #14718
by milos
Replied by milos on topic Re: Drop Down Menu won't work with Module displayed
Please disable loading of jQuery in Hot Joomla Carousel Pro module parameters.
Please Log in to join the conversation.
-
mcdmedia
Inactive member - Topic Author
- New Member
Less
More
- Posts: 9
- Thank you received: 0
12 years 10 months ago #14721
by mcdmedia
Replied by mcdmedia on topic Re: Drop Down Menu won't work with Module displayed
Thanks for that tip!
I have another question for you. On that same page www.tobinmcdonald.com/israelwithavi/sugg...raries/walking-trips
Inside the Carousel module you will see text that has a hover effect. When you hover over the text it displays an image. Do you have any plugins available that do this? But I need it so the images will load in the midddle of the page so they don't get cut off. If I need to post this somewhere else let me know
Thanks
I have another question for you. On that same page www.tobinmcdonald.com/israelwithavi/sugg...raries/walking-trips
Inside the Carousel module you will see text that has a hover effect. When you hover over the text it displays an image. Do you have any plugins available that do this? But I need it so the images will load in the midddle of the page so they don't get cut off. If I need to post this somewhere else let me know
Thanks
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 10 months ago #14741
by ivan.milic
Replied by ivan.milic on topic Re: Drop Down Menu won't work with Module displayed
You can do that simple using just css
in article text you would add html like this:
<a class="imageColapser" href="...">
<span>link text</span>
<img.../>
</a>
if template_css.css add:
.imageColapser img{
display:none;
}
.imageColapser:hover img{
position:absolute;
display:block;
}
.imageColapser:hover span{
display:none;
}
in article text you would add html like this:
<a class="imageColapser" href="...">
<span>link text</span>
<img.../>
</a>
if template_css.css add:
.imageColapser img{
display:none;
}
.imageColapser:hover img{
position:absolute;
display:block;
}
.imageColapser:hover span{
display:none;
}
Please Log in to join the conversation.
Time to create page: 0.154 seconds