Image has white around it on mobile view

I am stumped with looking for a fix. Hoping to see if you can assist how to remove the white around the colored bar on my page. I know this is some css to apply to the image, but not quite certain which.

https://www.profoundproductions.com

thank you in advance for any assistance to get this to look better :slight_smile: works great on the desktop view

Hi @headmetal,

Thank you for reaching out to us. To fix the issue, assign a class to the colored image element e.g no-space and then add the following code in the Theme Options > CSS:

@media screen and (max-width: 767px) {
    .no-space {
        display: block !important;
    }
}

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

thank you, worked great @Nabeel !!!

Glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.