Nav Bar Padding

Website: www.greenongreen.net

I’m attempting to try and move my logo all the way to the left in the nav-bar, purely so that when I minimize my screen to mobile size (or view on mobile) the menu drop down doesn’t get pushed onto another line.

I just can’t seem to find the CSS code that will allow me to move the logo further left.

That not going to work as there is still on enought space for it. Instead try to use something like this

@media (max-width: 480px) { 
   #logo {
       width: 70%;
	}
}

This will resize your logo on devices that are smaller than 480px in width.

Perfect!

Thanks so much.