Hello!
Building a website for a renovation company and I would like the logo to be centered in the menu. I have an odd number of links in the menu which I can deal with myself, but just want to know how to bring the logo to the center.
Please see website below for example. This one is exactly what I need!
Thanks!
Rebecca
Hi RebeccaMaguire!
You can use this CSS to center the logo.
.logo {
left: 50% !important;
transform: translateX(-50%);
}
Are you wanting to split the menu links around it? If so then let us know which link to split it at.
Regards,
Elliott
Hi Elliott,
Thanks for the quick response!
Unfortunately, this code seemed to do nothing.
And I would like to split the menu so that the logo is centered between part of the menu. I’m thinking for now split between About and Services. Obviously it’s not going to be even and I may have to remove one of the links, but I can adjust all that later on as well as making the logo smaller, just need to be able to bring the logo into the middle of the menu.
Thanks!
Rebecca
Hey!
if you want it similar to your example page, then use this code in Quick CSS:
strong.logo {
top: 50px;
}
li#menu-item-47 {
left: -200px;
}
li#menu-item-49 {
left: -200px;
}
li#menu-item-53 {
right: -300px;
}
li#menu-item-46 {
right: -300px;
}
li#menu-item-45 {
right: -300px;
}
and adjust as needed.
Cheers!
Andy
That did it! Thanks a lot, Andy!
Rebecca