Home › Forums › Back End › Menu Split by logo – WP Twenty Fourteen › Reply To: Menu Split by logo – WP Twenty Fourteen
May 28, 2014 at 11:01 am
#171270
Participant
Yeah, your CSS is a nightmare. You have clear:both;
and oddly calculated margins on all your h1, h2, h3, h4, h5 and h6 elements.
If you used float: left;
on .main
and your logo along with float:right;
on your .third
menu, you’d be getting somewhere. But first, let’s start with your logo.
.logo {
width: 150px;
height: 72px;
background: url('path/to/image') no-repeat;
}
Now remove the image tag in your PHP code that produces the logo image.