• Hello, I am having problems to remove the second border that appeared on my widget area… the small ones. My website is srasdobonfim.net
    Another thing.. Is it possible to remove the top border of my posts area? Just the one on top… the others that separate the posts I do not want to remove. Thanks!

Viewing 1 replies (of 1 total)
  • The border on the left of the sidebar is added to the wrong class, try this.

    Change

    .widget-area ul {
        border-left: 1px solid #CCCCCC;
    }

    To this

    .widget-area ul {
        border-left: none;
    }

    Add

    #sidebar {
        border-left: 1px solid #CCCCCC;
    }

    Then to remove the border above your posts use

    .hentry {
        border-top: medium none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Two borders’ is closed to new replies.