Modified header

Can anybody help me add a phone number on the right where it aligns with the navigation bar while also aligning horizontally with the logo on the top, like in the picture? Thank you!

Hi,

The following code will do what you want. You can change the values as you like. If you encounter any issues again, feel free to write, I’ll help.

  1. Navigate to the ā€˜Edit Code’ option in your theme settings, then search for ā€œbase.cssā€ in the search bar and add below codes.

nav.header__inline-menu {
    position: relative;
}

nav.header__inline-menu::before {
    position: absolute;
    content: "1-800-222-1313";
    top: 35%;
    right: 0;
    transform: translateY(-35%);
    font-weight: 600;
}

Terence

1 Like

Thank you very much!

You are welcome :wink:

If you require further assistance, feel free to tag me when opening a new topic or send me a private message. I’ll be happy to help when I have time from my own software work.

Terence..