• I’m trying to add a dark blue border on the right side and bottom of the sidebar area.

    I’ve added:
    `/* begin LayoutCell, sidebar1 */
    .art-content-layout .art-sidebar1
    {
    width: 25%;
    background: #c2cbd2;
    border-right: 1px solid #fdc101;
    border-bottom: solid 1px #fdc101;
    }
    /* end LayoutCell, sidebar1 */’

    But it’s not showing up. Any ideas as to why not?

    url – http://ultimatecareerconsultants.com/blog/

    thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The issue is you have another style already set that sets the border to none:

    .art-layout-cell, .art-content-layout-row {
       background-color: transparent;
       vertical-align: top;
       text-align: left;
       border: none !important;
       margin: 0 !important;
       padding: 0 !important;
    }

    So an easy fix would be to add the !important declaration to your styles, which will make the border show:

    .art-content-layout .art-sidebar1 {
       width: 25%;
       background: #C2CBD2;
       border-right: 1px solid #FDC101!important;
       border-bottom: solid 1px #FDC101!important;
    }
    Thread Starter vbpartners

    (@vbpartners)

    Ahhh! Great tip! I’ll make sure to put it into my notes for the future.

    Thanks! Got it working 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sidebar border not working’ is closed to new replies.