How can I eliminate the white space around my button?

Hey everyone! How do I remove the white around the “Shop Love Lillie” button, I want it to be smaller without the large white rectangle. Thank you :slightly_smiling_face:

Please add below css in bottom of assets/section-image-banner.css file

@media screen and (min-width: 750px)

.banner__box {
padding:5px;
width: auto;
max-width: initial;
min-width: auto;

}
in this if you give padding:0 then button border is not highlighted.
So, I give padding:5px;
Thank you.

This did not work for me. Is there something else I can do?

Thank you

1 Like