Support › Forums › Flex Theme › Responsive images › Reply To: Responsive images
July 2, 2015 at 2:25 am
#374
Moderator
Already there have CSS in @media queries section for banner image. You will edit the css as per your site design. Otherwise You can use my provided code for desktop only. Code will be like this:
@media only screen and (min-width: 1024px) {
.home-banner {
background-size: contain!important;
}
}
So this code only work on PC.
Note: First you will remove the old CSS and then you will apply this new CSS.