I want to put some customised text similar to your current logo at the top of the support page marked as below. the text needs to be something very different from those in the setting tab in wp
<span class=”subtext”>
<strong class=”logo-title”>Kriesi.at
<strong class=”logo-title logo-subtitle”>Premium Themes
</span>
I cant see where to add this I am using a child theme can you help please
Hey condonpb!
Please refer to this post – http://kriesi.at/documentation/enfold/add-subtext-to-logo-replace-logo-with-site-title/
Cheers!
Yigit
Yigit,
Thanks for this have added to functions .php file but does not show up ??
Can you advise
many thnaks
pete
Hi!
Can you please post the link to your website? You may need to make some CSS adjustments.
Best regards,
Yigit
Yigit,
Sorry here you are
http://vpsolutions.wpengine.com/ (hosted on WPengine)
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.logo img {
float: left;
}
.logo a {
min-width: 500px;
}
Cheers!
Yigit
Yigit,
Thanks I have used in functions.php file:
add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
function kriesi_logo_addition($sub) {
$sub .= “VP Solutions Ltd”;
return $sub;
}
If I want to add another comment below the title of the Company name such as “Taking vending to the next level” similar to the of you logo how can i achieve this ?