Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Menu Split by logo – WP Twenty Fourteen Reply To: Menu Split by logo – WP Twenty Fourteen

#171270
chrisburton
Participant

@r3quiem

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.