Add links below logo

Hi There. I’m using ethos xtheme stack and trying to see how I can add three links (like on this site: https://oaktreehealth.ca/) below the logo. Esentially the same thing, three words like on that site.

What file do I edit to do this? I do have a child theme.

My site is: http://hybridpharm.com/

Login details attached in secure not if needed

Hi there,

Yes, this is possible by editing the theme file that displays the logo area through a child theme.

You will have to override the file _brand.php that is in x\framework\legacy\cranium\headers\views\global.

You can do this by copying the file to x-child\framework\legacy\cranium\headers\views\global and making changes to the file from there.

Hope this helps you get started.

Ok perfect, that worked. My only issue now is that the nav is dropping lower because of the links, where I want the nav to stay inline horizontally with the logo/links area like it did before I added the links. Any ideas? I ouldn’t seam to get it to work.

Thank you very much

Hi There,

Please change your custom CSS to this:

.header-service-links {
    display: block;
    padding-top: 10px;
    clear: both;
    line-height: 1em;
    float: left;
}

And also add this custom CSS:

nav.x-nav-wrap.desktop {
    float: right;
    margin-top: -55px;
}

Hope it helps :slight_smile:

Great thank you!

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.