Site logo

Archived topic

Logo in navbar , aligment problem

4 replies · Started by Martin on July 7, 2015

Viewing posts 1–5 of 5

Hi

I have a small problem...

I have been able to put in a logo in the navbar but I cant get the menu to be centered on the right side of picture.

Picture:
Picture of the problem

here is the css:

.main-navigation .site-logo {
    float: left;
    line-height: 60 px; /* Adjust this to your menu item height */
    margin-right: 1em;
}

The size om my image is: 125x125px. I have tried to increase the "line-height" to 125px but still the same problem.

What do I need to change?

Thank you..

Is it possible to get a link to your site so I can take a look at the code?

Ah, looks like you just have to move the navigation down a bit.

Try this CSS:

@media (min-width: 768px) {      
      .main-nav {
            margin-top: 30px;
      }
}

Yes.. That worked perfectly.

Thank you :)

Glad I could help :)

This archived topic is closed to new replies.