Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1012378

    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.

    #1012627

    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

    #1012678

    Hello Rikard,
    I want to color the highlighted background (see the image below) of the left and right side of the grid row element.
    Footer background

    #1013460

    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

    #1013638

    Thanks, it worked perfectly :D

    Have a nice day :)

    #1013775

    Hi integraing,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.