To insert code use <code>...</code>.
Changing the sidebar width in Striking
  • Specifically I'd like to reduce the width of the sidebar on the homepage only. I'm assuming I'd have to use custom css?
  • 1 Comment sorted by
  • Hello, here is an example of custom CSS in Striking:


    .right_sidebar #main{ float:left; width:705px; }
    .right_sidebar #main .content {
    width:705px;
    overflow: hidden;
    }
    .right_sidebar #sidebar {
    float:right;
    width:215px;
    margin: 0 0 0.5em 30px;
    }

    .left_sidebar #main{ float:right; width:705px; }
    .left_sidebar #main .content {
    width:705px;
    overflow: hidden;
    }
    .left_sidebar #sidebar {
    float:left;
    width:215px;
    margin: 0 0 0.5em 30px;
    }


    Regards