Originariamente inviato da colde
Mi sa che quella riga non dipende dal margine delle news. Cmq c'è un errore che puo portare a uno sfasamento del layout, se imposti margin: 0 auto; non puoi inserire un altro valore dopo auto come hai fatto nell'header.
Questi sono esempi di come puoi gestire il margin.
h1 {margin: 10px}
all four margins will be 10px
h1 {margin: 10px 2%}
top and bottom margin will be 10px, left and right margin will be 2% of the total width of the document.
h1 {margin: 10px 2% -10px}
top margin will be 10px, left and right margin will be 2% of the total width of the document, bottom margin will be -10px
h1 {margin: 10px 2% -10px auto}
top margin will be 10px, right margin will be 2% of the total width of the document, bottom margin will be -10px, left margin will be set by the browser