Ethos tagline under logo title

Hi people,

I would like to know how to show a tagline under the logo title in the Ethos theme. There seems to be a topic on this but it’s too old I guess because there is no file to be found like this (_brand.php) in the theme’s folder. The support link is https://theme.co/apex/forums/topic/adding-tagline-to-ethos/
Do you have a solution?

Thanks and greetings,
Lisa

Hi There,

Thanks for writing in!
,
Please add this js code to the x->theme option -> Global JS,

jQuery(document).ready(function(){
        jQuery(".x-brand").append(" <span>Appended text</span>.");
    });

In The place of appended text, you can write your tagline.

Also add this css, to your global css so that it would look better.

.x-brand span {
 font-size: 16px;
 color: #fff;
display: block;
}

Please change the color code and font-size according to your design, even you can change the font family too.

Hope this helps.

Hi Basanta,

Thanks for your reply! Does this mean that the tagline is hard coded and I can’t change it in the theme itself (WordPress backend)?

Hi there,

You can override the template file so that you can have the tagline appear with the logo.

The _brand.php is now in x\framework\legacy\cranium\headers\views\global

Hope this helps.

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