Hi Team,
I have put a slider on page, and found out it does not fit well on small screen.
I got few questions after press F12 and have check the styling:
@media only screen and (max-width: 767px)
enfold-child/style.css?ver=4.1:120
.avia-slideshow-inner {
padding: 150px 0;
min-height: 200px !important;} ————————-> THIS CREATE A SPACE UNDER SLIDER(I can not fix it)
#full_slider_1 {padding: 50px 0 !important;} ————>WHY SHOULD WE NEED PADDING HERE?
}
@media only screen and (max-width: 767px)
enfold/css/shortcodes.css?ver=4.1:3776(not even found it… )
.responsive #top .avia-slideshow-controls a {
display: none; ———————->WHY WE CAN NOT DISPLAY IT?
}
Regards
Hey longlife0428,
Please provide a link to the site so we can look into this issue further.
Best regards,
Jordan Shannon
Hi,
Add the following to quick css:
@media only screen and (max-width: 767px) {
#full_slider_1 .avia-slideshow-inner, .caption_fullwidth, #full_slider_1 img{
height: 300px !important;
width: 900px !important;
right: 275px;
}
}
Best regards,
Jordan Shannon
Hi Jordan,
Thanks for your feedback.
Re-code Base on your styling as following fix:
@media only screen and (max-width: 767px) {
#full_slider_1 .avia-slideshow-inner, .caption_fullwidth, #full_slider_1 img{
height: 300px !important;
width: 800px !important;
}
#full_slider_1 {
padding: 0px !important;
}
.responsive #top .avia-slideshow-controls a {
display: block;
}
.responsive #top .avia-slideshow-dots a {
display: inline-block;
}
}
Looking good now thanks
Regards
Hi,
No problem at all. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon