Hi :)
I have two questions:
1. Is it possible to add multiple payment logo’s in the footer next to each other?
2. I would like to add an extra information content between the logo in the header (centered) and the menu. Is this possible?
Best regards,
Sylvana
Hey SecretDiamonds,
1. Yes that should be possible using a text widget
2. Yes, please try following this: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/. We can help you out with styling once you have added the widget area.
Best regards,
Rikard
Hey Rikard,
Thank you for your response.
About the second question: When I follow the procedure as told in the link I get the widget displayed in the logo instead of below the logo. How can I fix this?
Best regards,
Sylvana
Hi Sylvana,
Would you like to display page title below logo?
If so, 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 .= get_the_title();
return $sub;
}
Best regards,
Yigit