• Resolved kolumb55

    (@kolumb55)


    Hello.
    How can I move the wpForo sidebar from the right side to the left?
    I searched the forum, but didn’t find the solution.

    Thanks in advance.
    Cris

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support gVectors Support

    (@gvectorssupport)

    Hi @kolumb55,

    You can do it by using this CSS code:

    #wpforo #wpforo-wrap .wpforo-main {
        display: flex;
        flex-direction: row-reverse;
    }
    
    #wpforo #wpforo-wrap .wpforo-right-sidebar {
        margin-right: auto;
    }

    The CSS code should be added in the “Custom CSS code” textarea, located in the Dashboard > Forums > Settings > Style Tab.??

    Plugin Support gVectors Support

    (@gvectorssupport)

    This one should work better:

    #wpforo #wpforo-wrap .wpforo-main {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap:wrap;
    }
    
    #wpforo #wpforo-wrap .wpforo-right-sidebar {
        margin-right: auto;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sidebar on the left’ is closed to new replies.