Pregunta

I have a problem regarding my blogger website. There are annoying spaces above some widgets.

1) On a post page (for example), the blog post date does not align with my left and right sidebar. I would like the left sidebar (search box), the post (date, title etc.) and the right sidebar (black box) to be evenly aligned at top.

2) At the very bottom of the page, there are credit links (© text, about, disclaimer, contact etc.) that are also quite far down from the rest of the content. Again, I would like that space to be omitted so all looks evenly aligned.

I would be really thankful is somebody could help me with this! :) Thanks, Eva

¿Fue útil?

Solución

the blog post date does not align with my left and right sidebar

Remove the top margin here:

.widget {
   margin: 30px 0;
   _margin: 0 0 10px;
}

At the very bottom of the page …

Remove some of the top padding here

.footer-inner {
    padding: 30px 15px;
}

and perhaps bottom padding here:

.main-inner {
    padding-top: 35px;
    padding-bottom: 65px;
}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top