Header image close to page

In this page http://www.trentinomese.it I would like to approach header image to menu. In which way?!

Add padding at the top. Not sure if you are using a stock theme, or if you are using Foundation and stacks.

It’s an old theme… I’m looking for CSS code or similar to solve…

I’m not exactly sure what you’re trying to do. If you want to reduce the space between the logo and the menu, you can try this CSS. Past it in the site-wide CSS area.

#shadow {
  margin-top: 0;
}

You can try 5px (or other value) instead of “0”, if you want a bit of space.

2 Likes

Thank you! It works

Now I would to reduce space between box blue and the menu. What I’ve to type in CSS?

Page is www.trentinomese.it

Try this:

#container #content {
  padding-top: 20px;
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.