• Resolved sandroaraujo

    (@sandroaraujo)


    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]

Viewing 1 replies (of 1 total)
  • Theme Author WebHunt Infotech

    (@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

Viewing 1 replies (of 1 total)
  • The topic ‘Change slider height on mobile’ is closed to new replies.