Viewing 2 replies - 1 through 2 (of 2 total)
  • hi, jopvanHooft u have to just edit Your css file . style.css

    to remove the border of the navigation and widget area. need to remove the border left and right and add the border:0;
    and i think their a space between navigation and article section so reduce the 1px padding in .hentry class

    original css
    ————————
    .hentry {
    padding: 40px 0;
    }
    .site {
    background-color: #FFF;
    border-left: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    }

    Edited css
    ———————–
    .hentry {
    padding: 39px 0;
    }
    .site {
    background-color: #FFF;
    border:0;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    }

    Thread Starter JopvanHooft

    (@jopvanhooft)

    Awesome, thanks!!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove border around twenty thirteen navigation bar menu’ is closed to new replies.