Need to add text in the navigation next to the logo
-
Hi everyone,
Can you please help me figure out how to align the email and phone number in the top nav next to my logo? I think I’m almost there but it’s a bit hacky.
I was hoping I could add a text widget but I was wrong.
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi, add the following to your custom CSS to move the menu to the left adjacent to your logo.
@media screen and (min-width: 896px) { .site-menu { -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; } }The theme switches to the touch device menu at screen/window widths narrower than 896px, so I’ve used a Media Query to keep this change 896px and wider screens/windows.
-
Hi! Thanks so much. Though that did work, I was looking to only have the first two links move over to the left with the other two links on the right side.
Is that possible?
-
Due to the way the header area is done in the HTML and CSS, it would be quite a challenge to just move the two items to the right.
- The topic ‘Need to add text in the navigation next to the logo’ is closed to new replies.