Hi, I wanted my columns to have a default padding, so I added the below code to the css. The problem is my full-width images have been affected too. I can’t figure out how to tell the full-width image to override the css padding setting.
@media (max-width: 767px) {
#x-section-1 .x-column {
padding: 10px !important;
}
}
@media (min-width: 768px) {
#x-section-1 .x-column {
padding: 20px !important;
}
}
@media (min-width: 768px) and (max-width:1200px) {
#x-section-1 .x-column {
padding: 20px !important;
}
}
@media (min-width: 1201px) {
#x-section-1 .x-column {
padding: 30px !important;
}
}