Tagged: color section, mobile
Hi guys,
i would like to know if its possible to set a different height and background-size value on mobile to only one Color Section on the theme.
(The Color Section is set to take 70% of the screen on desktop screens)
So far i set an id to this color section and tried this CSS code, but had no results:
@media only screen and (max-width: 767px) {
.fuumi-top {
height: 411px !important;
background-size: 833px !important;
}
Hi guys, just solve this by adding .responsive #top #main .container_wrap:first-child to my CSS.
.responsive #top #main .container_wrap:first-child {
height: 411px !important;
background-size: 833px !important;
}
Thanks anyways. This is solved :)