- Posts: 6
- Thank you received: 0
problems with different navigators used
12 years 10 months ago #31359
by brugal
problems with different navigators used was created by brugal
by editing style.css file in modules/mod_hot_image_slider/tmp, i'm capable of changing the position description.
#slide-controls .textdesc{
float:center!important;
padding-top:300px!important;
padding-right:5px!important;
font-size:20px!important;
}
However, it doesn't work for all navigators: In explorer and mozilla works, in chrome not (also doesn't work neither mobils and tablets).
Any idea to solve the problem?
#slide-controls .textdesc{
float:center!important;
padding-top:300px!important;
padding-right:5px!important;
font-size:20px!important;
}
However, it doesn't work for all navigators: In explorer and mozilla works, in chrome not (also doesn't work neither mobils and tablets).
Any idea to solve the problem?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 10 months ago #31362
by ivan.milic
Replied by ivan.milic on topic problems with different navigators used
Send link so we could have an look
Please Log in to join the conversation.
12 years 10 months ago - 12 years 10 months ago #31363
by brugal
Replied by brugal on topic problems with different navigators used
it's a web under construction, so you need to login
web: www.adivino.net.mialias.net
user:xxxxxxxx
password:xxxxxxxxx
web: www.adivino.net.mialias.net
user:xxxxxxxx
password:xxxxxxxxx
Last edit: 12 years 10 months ago by ivan.milic.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 10 months ago #31374
by ivan.milic
Replied by ivan.milic on topic problems with different navigators used
Remove that padding-top and use common way:
position:relative;
top:+20px;
20px is example value
position:relative;
top:+20px;
20px is example value
Please Log in to join the conversation.
12 years 10 months ago #31407
by brugal
Replied by brugal on topic problems with different navigators used
it Works. Thanks!
Now I would like to remove the text animation. Rather than be appearing letter by letter, I would like the text appears at once when the image is loaded. How can i do it?
Now I would like to remove the text animation. Rather than be appearing letter by letter, I would like the text appears at once when the image is loaded. How can i do it?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 10 months ago #31416
by ivan.milic
Replied by ivan.milic on topic problems with different navigators used
Open:
find this:
replace it with:
find this:
Code:
text: function (di) {
slider.cr['a'] = di.client;
slider.cr['b'] = di.desc;
slider.ticker('#slide-client span', di.client, 0, 'a');
slider.ticker('#slide-desc', di.desc, 0, 'b');
},
replace it with:
Code:
text: function (di) {
slider.cr['a'] = di.client;
slider.cr['b'] = di.desc;
jQuery('#slide-client span').text(di.client);
jQuery('#slide-desc').text(di.desc);
//slider.ticker('#slide-client span', di.client, 0, 'a');
//slider.ticker('#slide-desc', di.desc, 0, 'b');
},
Please Log in to join the conversation.
Time to create page: 0.202 seconds