Removing Gray Page Boarder

I am working on this site…
http://8hw.dac.myftpupload.com/store-2/

All of my store related pages have a gray boarder around the page. How do I remove that on all pages so that it is all white with no boarder.

Thank you in advance for your help.

Hello @bcoplin,

Thanks for asking. :slight_smile:

You can add following CSS under Pro > Theme Options > CSS:

.entry-wrap {
    box-shadow: none !important;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Worked perfectly! Thank you!

One last thing, how do I remove entry titles.

Hello @bcoplin,

Thanks for updating the thread.

You can add following CSS under Pro > Theme Options > CSS:

.entry-title {
    display: none;
}

Thanks.

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