Hi, as you can see here – http://screencast.com/t/LodJgDPlV0c – the background image in the new custom design demo doesn’t look good on smartphones. How can it be removed only on smartphones so it will just show the background color?
Thanks.
That Image belongs to a color-section and on that demo page this color section got his own id so
@media only screen and (max-width: 480px) {
#service {
background-image: none !important;
}
}
play a bit with the 480px screenwidth
If there is no ID make one ore give the color-section an own custom class
Thanks!