- Posts: 3
- Thank you received: 0
How to move slide control at the bottom?
-
janelle
Inactive member -
Topic Author
- New Member
-
Less
More
14 years 1 week ago #6728
by janelle
How to move slide control at the bottom? was created by janelle
Hi great module!
just want to ask how to place the buttons, title and description at the bottom of my banner.
is there any way to override this?[red text] or any way to just place the navigation at the bottom
div#header_hotslider div#slide-holder div#slide-controls {
background: url("modules/mod_hot_image_slider/images/slide-bg.png") repeat scroll 0 0 transparent;
display: none;
height: 46px;
left: 0;
position: absolute;
top: 10px;
width: 499px;
thanks
just want to ask how to place the buttons, title and description at the bottom of my banner.
is there any way to override this?[red text] or any way to just place the navigation at the bottom
div#header_hotslider div#slide-holder div#slide-controls {
background: url("modules/mod_hot_image_slider/images/slide-bg.png") repeat scroll 0 0 transparent;
display: none;
height: 46px;
left: 0;
position: absolute;
top: 10px;
width: 499px;
thanks
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
14 years 1 week ago #6731
by ivan.milic
Replied by ivan.milic on topic Re: How to move slide control at the bottom?
Hi,
You can copy that in style block in head tag of index.php page just before </head> because it will have highest importance there and it will override all values :
<html....
<head...
<style type="text/css">
...
Your css
...
</style>
</head>
You can copy that in style block in head tag of index.php page just before </head> because it will have highest importance there and it will override all values :
<html....
<head...
<style type="text/css">
...
Your css
...
</style>
</head>
Please Log in to join the conversation.
-
janelle
Inactive member -
Topic Author
- New Member
-
Less
More
- Posts: 3
- Thank you received: 0
14 years 1 week ago #6732
by janelle
Replied by janelle on topic Re: How to move slide control at the bottom?
Thanks for the quick reply!! But instead of index.php I changed the default.php.
I have another question regarding the transition on the title and definition. I would like to make it fade in instead of the type writer effect. and i tried changing the scipts.js, only problem is i can't seem to make both text fade in at the same time with the image.
I undertand you don't have time to give me code, i just need to know how your transition timer works. is there any timer? where is it?
thanks!
I have another question regarding the transition on the title and definition. I would like to make it fade in instead of the type writer effect. and i tried changing the scipts.js, only problem is i can't seem to make both text fade in at the same time with the image.
I undertand you don't have time to give me code, i just need to know how your transition timer works. is there any timer? where is it?
thanks!
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
14 years 6 days ago #6764
by ivan.milic
Replied by ivan.milic on topic Re: How to move slide control at the bottom?
Hi,
auto: function () {
if (!slider.ar) return false;
var next = slider.cur + 1;
if (next >= slider.num) next = 0;
slider.slide(next);
},
will be called each time to begin new transition, so you could add your code in this function.
auto: function () {
if (!slider.ar) return false;
var next = slider.cur + 1;
if (next >= slider.num) next = 0;
slider.slide(next);
},
will be called each time to begin new transition, so you could add your code in this function.
Please Log in to join the conversation.
Time to create page: 0.172 seconds