Sidebar alignment with categories and more

First off thank you so much for this amazing theme! <3

If I add a category to my menu the sidebar does not align vertically with my posts because of the category title showing up: http://beheer.baardapapa.nl/wordpress/?cat=33
Same goes for my ‘blog’ category page.

This does not look good :slight_smile: Do you have a solution for me?
Maybe there is another way of showing a combination of posts without the usage of post categories?

You can move sidebar down to align it with primary content area. To get this code add this code to Theme Options - Other - Custom CSS

#secondary {
    margin-top: 70px;
}

Thanks for the quick reply. That quick fix helps for the category posts, but now my blog page and normal pages are not aligned any more:

http://beheer.baardapapa.nl/wordpress/?page_id=1422
http://beheer.baardapapa.nl/wordpress/

Is there a way to only apply this to category pages?

No problem with that. Just replace the code I provided earlier with this one. It will target only “Archive” pages.

.archive #secondary {
	margin-top: 70px;
}

That does the job! Thanks so much