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

    your content column is in this div
    <div id="contentarea">

    Apply your borders to it – you will need some left and right padding to move the border away from the text, and you will probably have to assign a width to that div that is narrower than the width of the td that contains the div, to allow for the extra width the padding you are adding adds to the overall div

    try these for starters:

    #contentarea {
      border-left: 1px solid #666;
      border-right: 1px solid #666;
      padding: 0 10px 0 15px;
    }
    Thread Starter advicemaven

    (@advicemaven)

    Thanks so much for your reply. It looks like I will need to make a few adjustments to fit the border without making my content area too narrow. At least now I understand how to get started.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do I add a border between sidebars & content’ is closed to new replies.