Unfortunately, it didn’t work.
I noticed that in the theme’s stylesheet there were several css code’s for parallax functions (towards the bottom) For example, I saw:
(1)
@media only screen and (min-width: 1930px) {
.parallax {
background-size: cover;
}
}
(2)
/* Smaller than standard 980 */
@media only screen and (max-width: 991px) {
.site-header.fixed {
position: static !important;
}
.parallax {
background-size: cover;
background-attachment: scroll;
background-position: top center!important;
}
———
So I tried adding the following css codes in the child theme, but still no cigar. ??
I tried:
(1)
@media only screen and (max-width: 1281px) {
.parallax {
background-size: cover;
background-attachment: scroll;
background-position: top center!important;
}
}
(2)
@media only screen and (max-width: 1367px) {
.parallax {
background-size: cover;
background-attachment: scroll;
background-position: top center!important;
}
}
——-
It’s driving me crazy! Lol! ??