Site logo

Archived topic

Extend sidebar to bottom of page.

3 replies · Started by Amanda on March 27, 2020

Viewing posts 1–4 of 4

Hi Guys,

I am trying to increase the height of the right sidebar so that it extends to the bottom of the page. Is there a simple css code I can use. I don't mind it being or all sidebars on all pages.

Example: https://prnt.sc/ro3303

Hi there,

Try this CSS:

.site-content, #right-sidebar {
    display: flex;
}
#right-sidebar .inside-right-sidebar {
    display: flex;
    flex-direction: column;
}
#right-sidebar .widget:last-child {
    flex: 1;
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Let me know if this helps :)

Perfect thank you very much.

No problem :)

This archived topic is closed to new replies.