Problem with Responsive mode in Responsive Banner
- Posted by Raúl Ramón (14) Offline
What´s happen if i need that the module not works in responsive mode. For example if i need that the module has ever the same size? It´s possible his configuration?
You can see the image that i add
10 years 4 weeks ago #1
by Raúl Ramón
You can see the image that i add
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi mknofler, The responsive mode can't be disabled via administrator page, but it can be disabled by modifying some codes in the css file. Please let me know your website url so I can suggest what to change
10 years 4 weeks ago #2
by TemplatePlazza
Please Log in or Create an account to join the conversation.
- Posted by Raúl Ramón (14) Offline
- Posted by TemplatePlazza (5310) Offline
Hi, sorry I just checked the code and unfortunately the height and weight of images are calculated from the given number in the backend (not by css).
I'm not sure whether this will solve your issue but you can try this workaround :
Please open this file with your php editor www.lahuertaencasa.com.es/modules/mod_re...sivebannerslider.php
arround line 65 you will see this code
try to change it to
10 years 4 weeks ago #4
by TemplatePlazza
I'm not sure whether this will solve your issue but you can try this workaround :
Please open this file with your php editor www.lahuertaencasa.com.es/modules/mod_re...sivebannerslider.php
arround line 65 you will see this code
$sliderHight768 = ($sliderHight/4) * 3;
$sliderHight360 = $sliderHight768/2;
try to change it to
$sliderHight768 = ($sliderHight/4) * 3;
$sliderHight360 = $sliderHight768;
Please Log in or Create an account to join the conversation.