Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1294944

    Hi guys,

    Firstly, beautiful theme! I know you hear this all the time but still… Enfold is incredible.

    I am trying to extend the light grey background of the sidebar to the edge of the screen on https://theselines.com/home/ please.

    I’d also like to see the sidebar background extend just enough to make the sidebar appear as a standalone ‘column’ down the right side of the screen. E.g, adding the same amount of margin that features on the left of the column again to the right. I hope that makes sense?

    All of my efforts so far have resulted in botched formatting elsewhere, haha. Please advise, thank you!

    Kind regards,
    Tom

    #1295438

    Hey Thumphreys,

    Thank you for the inquiry.

    Try to use this css code in the Quick CSS field to create a new container with a background inside the sidebar.

    #top #main .sidebar:before {
        content: '';
        display: block;
        width: 500px;
        height: 400vh;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #00000008;
    }
    
    #top #main .sidebar {
        float: left;
        overflow: unset;
        width: 25%;
    }

    You may need to remove this css to get rid of the background overlay.

    #top #main .sidebar {
        background-color: #00000008;
    }
    

    Best regards,
    Ismael

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