i want to remove this raw but i dont see in the template can you please tell me how can i remove it
done thank you sir also i want to add name next to the logo how can i do that
Hi,
Try adding this code to the end of your functions.php file in Appearance > Editor:
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub)
{
$sub .= "<span class='logo-title logo-subtitle'>";
$sub .= "test";
$sub .= "</span>";
return $sub;
}
Please adjust the “test” to the text you wish
then and add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
#top .logo, #top .logo a {
overflow: visible;
}
#top .logo-subtitle {
font-size: 18px !important;
top: 30px !important;
position: absolute;
right: -50px;
}
You will probably want to style your text more, feel free to adjust the css.
Best regards,
Mike
sir the wording is not showing properly next to logo can you tell me how to adjust it : http://oasisconsulting.co.tz/
the word oasis consulting i want it to be in straight horizontal line
i want the logo to be next to it and not down
it should be in menu bar
Hi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
#top #header span.logo-title.logo-subtitle {
top: 30px !important;
position: absolute;
width: 400px;
left: 80px;
}
#top #header.header-scrolled span.logo-title.logo-subtitle {
top: 5px !important;
}
Best regards,
Mike