Okay
  Public Ticket #1617331
Sidebar - to the left side
Closed

Comments

  • idanyashar started the conversation

    Hello there, I want to move sidebar in blog pages to the left side.
    I've tried this code from another ticket made back in 2014,  and it doesn't work for me.. is there another way?

    body #sidebar {
        float: left;
    }
    body #post-area {
        float: right;
    }
    body #post-area {
        padding-right: 0px !important;
        margin-left: 2% !important;
        margin-right: 0px !important;
    }
    body #post-area.masonry.span_9 {
        width: 74.5% !important;
    }
    
  •  3,030
    Andrew replied

    Hi idanyashar,

    Try this CSS instead:

    body.single-post #sidebar {
        float: left;
    }
    body.single-post .post-area {
        float: right;
    }
    body.single-post .post-area {
        padding-right: 0px !important;
        margin-left: 2% !important;
        margin-right: 0px !important;
    }
    body.single-post .post-area.masonry.span_9 {
        width: 74.5% !important;
    }
    

    add it to salient \ general settings - css script related - custom css code.

    Cheers.

  • idanyashar replied

    Works like a charm. Thanks!