Comment to 'more choices for homepage layout'
  • Yes you can do it by injecting the following code into your mix, but be careful, by doing that you redefined I think you also redefined all the layout that use the proportion 25/50/25, you replace all by 50/25/25

    /* Left column */
    .bx-layout-bcb-bar1 {
    width: 50%;
    }
    /* central column */
    .bx-layout-bcb-content {
    width: 25%;
    }
    */ right column */
    .bx-layout-bcb-bar2 {
    width: 25%;
    }

    image_transcoder.php?o=bx_froala_image&h=1769&dpx=1&t=1566070902

    • Baloo, I tried that and cleared all cache but got no effect on the site. Also previously I tried this code below and got no effect.    

      /* columns shifted */

      .bx-layout-bcb-bar1, {

          width: 50%;

      }

      .bx-layout-bcb-content {

          width: 25%;

      }

      .bx-layout-bcb-bar2 {

          width: 25%; 

      image attached is your code applied after deleting my code

      • Strange works at home without even needing to empty the cache. So maybe try this:

        /* Left column */
        .bx-layout-bcb-bar1 {
        width: 50% !important;
        }
        /* central column */
        .bx-layout-bcb-content {
        width: 25% !important;
        }
        /* right column */
        .bx-layout-bcb-bar2 {
        width: 25% !important;
        }
        • no change with !important......... i have other custom changes which took effect immediately... having no luck with this.