Just delving into the world of WordPress and CSS as I work on completing a WordPress site. The final hurdle involves overcoming the current padding issue that only affects desktop and laptop browsers, causing elements to be centered with padding on either side on mobile devices.
I attempted to craft my own CSS solution but struggled with making it effective (I'm not the best at this) so I am turning to you experts for help. Here's what I tried:
@media all and (max-width : 780px) {
.column{
padding-left:0px;
padding-right:0px;
}
}
You can see the webpage I'm testing it on here:
Appreciate any assistance!