- Posts: 18
- Thank you received: 0
It start - Several Porblem
-
Airjie
Inactive member - Topic Author
- New Member
Less
More
13 years 7 months ago #8681
by Airjie
It start - Several Porblem was created by Airjie
Hello,
I use your template "it start" with the last joomla 1.6.3 and I have several problems I need your help to resolve.
1. In the top menu, only the parent item of the page drop down. Which mean if I am on the page "live courses" the item of this parent will show but ,not the item of the other parent menu.
2. Firebug say I have got an error it show this in red :
$("#gallery a").lightBox is not a function
[Stopper sur une erreur] $('#gallery a').lightBox();
3. I also think there are some conflict with other module scripts because a lot of module I used with my old template does't work anymore since I change for this template.
You can see everything here : www.speak-e.biz
I really hope that you can help me to fix this bug because I really like this template.
Thanks a lot.
I use your template "it start" with the last joomla 1.6.3 and I have several problems I need your help to resolve.
1. In the top menu, only the parent item of the page drop down. Which mean if I am on the page "live courses" the item of this parent will show but ,not the item of the other parent menu.
2. Firebug say I have got an error it show this in red :
$("#gallery a").lightBox is not a function
[Stopper sur une erreur] $('#gallery a').lightBox();
3. I also think there are some conflict with other module scripts because a lot of module I used with my old template does't work anymore since I change for this template.
You can see everything here : www.speak-e.biz
I really hope that you can help me to fix this bug because I really like this template.
Thanks a lot.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 7 months ago #8699
by ivan.milic
Replied by ivan.milic on topic Re: It start - Several Porblem
1. You probably put some option on menu or menu item to hide it.
2. Open index.php of template and find:
$("#gallery a").lightBox();
then change it like this
if(jQuery){
if(jQuery("#gallery a")[0]) jQuery("#gallery a").lightBox();
}
3. If you have script conflicts, you may consider turning off jquery from all modules, templates and plugins then reference it manually by copying files you can get from jQuery.com to some folder in your site and then edit index.php of template to add references.
there are 2 script and one css reference:
<link href="<???path???>/jquery-ui-x.x.x.custom.css" rel="stylesheet" type="text/css" />
<script src="<???path???>/jquery-x.x.x.min.js" type="text/javascript" />
<script src="<???path???>/jquery-ui-x.x.x.min.js" type="text/javascript"/>
2. Open index.php of template and find:
$("#gallery a").lightBox();
then change it like this
if(jQuery){
if(jQuery("#gallery a")[0]) jQuery("#gallery a").lightBox();
}
3. If you have script conflicts, you may consider turning off jquery from all modules, templates and plugins then reference it manually by copying files you can get from jQuery.com to some folder in your site and then edit index.php of template to add references.
there are 2 script and one css reference:
<link href="<???path???>/jquery-ui-x.x.x.custom.css" rel="stylesheet" type="text/css" />
<script src="<???path???>/jquery-x.x.x.min.js" type="text/javascript" />
<script src="<???path???>/jquery-ui-x.x.x.min.js" type="text/javascript"/>
Please Log in to join the conversation.
Time to create page: 0.159 seconds