Site logo

Archived topic

Move sidebar to rigt position

7 replies · Started by Lorenzo on December 31, 2020

Viewing posts 1–8 of 8

Hello, I personalize elementor FLINT SKIN generatepress theme, and i have a problem to move aside / sidebar to float right. I adding css in style.css

#sidebar{
width: 26%;
float: right;
position: relative;
z-index: 10;
padding-bottom: 40px;
}

But is dont work. Look capture

Capture page

Look capture

Sorry, the capture is not the correct. Good capture

Correct

Hi there,

that pages is a buddypress template - you can try this CSS:

@media(min-width: 769px) {
    .buddypress-wrap .wrapper {
        display: flex;
    }.buddypress-wrap .wrapper #content {
        flex: 1;
    }
    .buddypress-wrap .wrapper #sidebar {
        margin-left: 40px;
        flex: 0 0 26%;
    }
}

Hello, thank you for your help. I have added the code in /wp-content/themes/generatepress/style.css and after in /wp-content/themes/generatepress/buddypress/css/buddypress.css
But is not working.

Thanks agian for your help.

Capture

Thank you very much. Is resolved ;)

Sorry, the option css for made responsive the sidebar ?

Thanks

This archived topic is closed to new replies.