My customer doens’t have a logo. How do I add their company name, etc. to the header? How can I can control the font, size, etc?
Hey sbisllc!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub) {
$sub .= "Company Name";
return $sub;
}
Then you can add following code to Quick CSS in Enfold theme options under General Styling tab to adjust the color and size
.subtext { color: orange; font-size: 20px; }
Best regards,
Yigit
Perhaps I’m missing something. I added the company name to functions.php and uploaded it to the child theme folder and added the code under the General Styling tab but the text isn’t showing up.