-
AuthorPosts
-
September 28, 2017 at 11:17 pm #858244
Dear Kriesi,
How can I display a subtitle underneath the logo in my site header?
When I add a Tagline in the WordPress settings it does not display in the Enfold theme. How else can I add this?
Thanks, Richard
September 28, 2017 at 11:24 pm #858247Hey Richard,
Please add following code to Functions.php file in Appearance > Editor and edit as needed
add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= "Company Name"; return $sub; }Best regards,
Jordan ShannonSeptember 28, 2017 at 11:45 pm #858259This reply has been marked as private.September 29, 2017 at 4:01 am #858295Hi,
You can add the following custom CSS code at Enfold Theme Options > General Styling > Quick CSS
.logo a:after { content: "My Subtitle" !important; display: block !important; }Best regards,
John TorvikSeptember 29, 2017 at 8:20 am #858343This reply has been marked as private.September 29, 2017 at 5:14 pm #858539Hi,
You would have to add a font-size to the css above. It wouldn’t be rendered as heading, but likely a span.
Best regards,
Jordan ShannonSeptember 30, 2017 at 7:18 pm #858799Dear Jordan,
I’m afraid I just want get this to work. When I add the following in the css, my logo text moves to the left but no text appears for my subtitle.
.logo a:after {
content: “My Subtitle” !important;
display: block !important;
}Thanks, Richard
October 2, 2017 at 7:53 pm #859347Hi,
.logo a::after { content: “My Subtitle” !important; display: block !important; padding-top: 20px; }Please do try it like that and let us know
Best regards,
BasilisOctober 10, 2017 at 10:39 pm #862680Thanks,
I’m afraid that the subtitle is still not appearing
October 12, 2017 at 5:31 am #863142Hi Richard,
Maybe it would be better if you added a widget area to the header and added the tagline there? http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
Best regards,
Rikard -
AuthorPosts
- You must be logged in to reply to this topic.
