[Support request] Style the left sidebar – CSS

Home Forums Support [Support request] Style the left sidebar – CSS

Home Forums Support Style the left sidebar – CSS

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1636006
    Barney

    How do I style a border around the left sidebar? Thx!

    #1636276
    Leo
    Staff
    Customer Support

    Hi Barney,

    Any chance you can link me to the page in question?

    Or let me know if you are using the one container or separate containers layout?

    #1637150
    Barney

    The left-navigation with a yellow background is the left sidebar.

    The layout is “separate containers.”

    ty!

    #1637183
    David
    Staff
    Customer Support

    Hi there,

    you can use this CSS:

    #left-sidebar {
      border: 3px solid #0d65b1;
    }

    And if you want you can remove its top border on desktop ( as the element above has a border ) then add this CSS:

    @media(min-width: 769px) {
      #left-sidebar {
        border-top: 0;
      }
    }
    #1638375
    Barney

    Works great. Thanks for going above and beyond with that second snippet of CSS!

    #1638505
    David
    Staff
    Customer Support

    You’re welcome!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.