Logo tagline WITHOUT text logo ?

Posted in: Newspaper
Post count: 29

Hello,

I’m building a website where I need to have :

– The logo (.png)
– A text tag line below (using your Header style 10)

Sadly, text tagline only appear if a text logo is set only. It doesn’t show up if using an image logo ! Is there a way to enable it ?

Thank you

Post count: 22421

Hello,
Indeed if you use a standard logo and not a text logo, there will be no tagline displayed. If you need a tagline under the logo, it can only be added by customizing the header php file.
Here is an example of how you can add a tagline:

Step 1. Place this code in header-style-10.php
<div class="customtagline">
<p>Tagline text</p>
</div>

https://www.screencast.com/t/g4XAhsV6TZS

Step 2. Place this code in the theme panel-> custom code-> custom css section:

.customtagline{
display:table;
margin-left:Auto;
margin-right:auto;
font-size:14px;
}

Thanks.

Post count: 15

This helps

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.