Forums
Home / Theme: matrix / Change slider height on mobile
(@sandroaraujo)
6 years, 9 months ago
Hello there!
I tried to use this media querie but, didn’t work. Could you guys say what am i doing wrong?
@media screen and (max-width: 480px) { #main-slide .carousel { height: 500px; } }
The page I need help with: [log in to see the link]
(@webhuntinfotech)
Hello,
just remove the space between #main-slider and .carousel. Because both are taken form same line.
Here the css rule you can use (If this will not worked use !important with your css rule) :-
@media screen and (max-width: 480px) { #main-slide.carousel { height: 500px; } }
Save the change
Thank You