URL: http://www.judithpoulteney.co.uk
Hi there,
Is there any chance you can give me a code to make the first tagline in the header under the logo. The text to be enlarged is “Judith Poulteney” and should be a larger font size (40px) than the 2 lines below (they are font size 22px): see http://imgur.com/VJNZpww
Do I need to create another class in functions.php to do this?
This is what I added for all subtext on functions.php:
add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);
function kriesi_logo_addition($sub) {
$sub .= “<span class=’logo-title’>Judith Poulteney<br />UCAS statements – job applications<br /> interview practice</span>”;
return $sub;
}
Thanks a lot,
Susanne
Hi!
Please change your code to following one
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub) {
$sub .= "<span class='logo-title'><span class='headline'>Judith Poulteney</span><br />UCAS statements – job applications<br /> interview practice</span>";
return $sub;
}
and then add following code to Quick CSS
.headline { font-size: 40px; }
Regards,
Yigit
Perfect, Yigit! You’re a star….
Thank you so much,
Susanne