I want to move my navigation menu inline with my website title. I have tried floating it to the right but I still have some space above it.
Thanks!
Yes, I am using a child theme :-)
I want to move my navigation menu inline with my website title. I have tried floating it to the right but I still have some space above it.
Thanks!
Yes, I am using a child theme :-)
You'll need to post a link to your site for help with CSS questions.
My site is not yet up but it's basically the default theme.
Try using a negative top margin to move it up - this seems to do it:
.main-navigation {
float: right;
margin-top: -50px;
text-align: center;
}
But do be aware that making these kinds of changes in this theme - which is coded "mobile first" may wreck havoc with how the menu works on different size devices - so test widely.
It works somewhat. It definitely breaks the mobile site though.
Thanks for your reply.
You must log in to post.