- Posts: 23
- Thank you received: 0
change load image
-
wkaatz
Inactive member - Topic Author
- Member
Less
More
13 years 2 months ago #11499
by wkaatz
change load image was created by wkaatz
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 2 months ago #11512
by ivan.milic
Replied by ivan.milic on topic Re: change load image
Hi, open modules\mod_hot_accordion\tmpl\default.php
at the very end add this:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.hot_accordion UL LI').last().<?php echo $animateActivation; ?>();
});
</script>
at the very end add this:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('.hot_accordion UL LI').last().<?php echo $animateActivation; ?>();
});
</script>
Please Log in to join the conversation.
-
wkaatz
Inactive member - Topic Author
- Member
Less
More
- Posts: 23
- Thank you received: 0
13 years 2 months ago - 13 years 2 months ago #11517
by wkaatz
Replied by wkaatz on topic Re: change load image
did not work
here is edited file....
thanks for the help!
site can be viewed here... decorativeplumbingonline
here is edited file....
thanks for the help!
site can be viewed here... decorativeplumbingonline
Last edit: 13 years 2 months ago by wkaatz.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 2 months ago #11519
by ivan.milic
Replied by ivan.milic on topic Re: change load image
ok try this insread:
Code:
<script type="text/javascript">
jQuery(document).ready(function(){
var L = jQuery('.hot_accordion LI .accordion_block').last();
jQuery(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:<?php echo $animationSpeed; ?> });
jQuery(L).animate({width: maxWidth+"px"}, { queue:false, duration:<?php echo $animationSpeed; ?>});
lastBlock = L;
});
</script>
Please Log in to join the conversation.
Time to create page: 0.175 seconds