• Hey guys,

    I ve got an annoying border (border-bottom)
    at the end of the content area.
    What exactly do I have to edit to get
    rid of it ?

    theme is: twentyeleven

    thanks,

    vince

Viewing 4 replies - 1 through 4 (of 4 total)
  • site link plz

    Do not edit the Twenty Eleven theme. It is the default WordPress theme and having access to an unedited version of the theme is vital when dealing with a range of site issues. Create a child theme for your changes.

    remove code “border-bottom: 1px solid #DDD;” on style.css line 706 or 707 as:
    Before:
    .hentry, .no-results {
    border-bottom: 1px solid #DDD; << remove it
    margin: 0 0 1.625em;
    padding: 0 0 1.625em;
    position: relative;
    }
    After:
    .hentry, .no-results {
    margin: 0 0 1.625em;
    padding: 0 0 1.625em;
    position: relative;
    }

    Thread Starter vince23

    (@vince23)

    thanks , man !

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Border at the end of the content area’ is closed to new replies.