Swapping columns over with Foodica

Hi All,

I’m very new to this and I was wondering how I flip the about page from the right side to the left using the Foodica theme? Any help would be great.

Thanks
Jase

Hello,

Do you want to change the columns with location? The sidebar on the left and the content on the right?

Or you simply want the About Me widget to appear above the content?

Hi Pavel,

That is exactly what I want to do. I want the sidebar on the left and the content on the right.

Please add this following CSS code in WP-Admin > Appearances > Customize > Additional CSS:

.site-main .content-area {
    float: right;
}
.site-main #sidebar {
    float: left;
    margin-left: 0;
    margin-right: 2%;
}
@media screen and (max-width: 768px){
    main#main {
        display: flex;
        flex-direction: column;
    }
    .site-main .content-area {
        float: none;
        order: 2;
    }
    .site-main #sidebar {
        float: none;
        margin-right: 0%;
        order: 1;
    }
}