Ciao,
I created a page in my website to use for the footer.
I added a grid row element and I set it not full width with css. Then I set the background color of the footer by choosing “Footer” in Section Colors. The problem is that the background margins are white and not of the footer color. How can I fix this?
This is the page that I want to use for the footer: https://amastone.com/footer/
Thanks in advance.
Hey integraing,
Thanks for the link, though I’m not sure I understand exactly what you are looking to change. Could you try to explain a bit further please?
Best regards,
Rikard
Hello Rikard,
I want to color the highlighted background (see the image below) of the left and right side of the grid row element.
Hi,
Thank you the update.
This css code should create a pseudo container behind the grid row content with a background color.
.footer-grid-row:before {
content: '';
display: block;
width: 1000vw;
height: 100%;
position: absolute;
top: 0;
left: -200vw;
background: #222222;
}
Best regards,
Ismael
Thanks, it worked perfectly :D
Have a nice day :)
Hi integraing,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
Victoria