Hello enfold team!
I put this code in the style.css file, ( after adding the ID ak_bg to the color section where the background photo is being called ) The background photo is not changing. what please am I missing??
Thank you
#ak_bg {
background-image: url(‘http://webstrauss.com/ak/wp-content/uploads/2015/05/lhouse9.jpg’)!important;
}
.ak_sign_up { line-height: 50px !important;}
@media (max-width: 750px) {
#ak_bg {
background-image: url(‘http://webstrauss.com/ak/wp-content/uploads/2015/05/lhouse9.jpg’)!important;
}
.ak_sign_up { line-height:16px !important;}
}
Hey Hindy!
I don’t see the #ak_bg section in your source code. Go ahead and take a screenshot and highlight exactly what your trying to do so we can get a better idea.
Regards,
Elliott
oops sorry.
I see i made a mistake.
here is the code, a little cleaner:
I am attempting to create a basic background image change – media query, such that on smaller screens, I can load a smaller image
#ak_bg {
background-image: url(‘http://webstrauss.com/ak/wp-content/uploads/2015/05/lhouse8.jpg’)!important;
}
@media (max-width: 750px) {
#ak_bg {
background-image: url(‘http://webstrauss.com/ak/wp-content/uploads/2015/05/lhouse9.jpg’)!important;
}
}
I added the ID #ak_bg to the field in the “color box” where you can select the background image of that particular section
Thank you again – for your prompt response
Hey!
Remove the first line and only use this.
@media screen and (max-width: 767px) {
#ak_bg2 {
background-image: url("URL to your image") !important;
}
}
Regards,
Elliott