Hello,
My client has a logo which is used on other corporate sites like this 1) and it should look the same on the homepage of the new site > look at my psd example: 2)
I could only figure out how to integrate the logo like this 3) but they don’t like it.
My question is: Can I use the logo “only on the homepage” like example 2) ? with modification of the CSS code?
The other pages would then use just the logo without the arced line, with normal Enfold logo integration.
Please note that they are doing a rebranding which will be effective in 2 month and the integration of this old logo will only last for this short period. Any help would be appreciated,
Best, AB
Hey anma!
Please firstly choose to display different logo on your home page by adding following code to Functions.php file in Appearance > Editor
add_filter('avf_logo','av_change_home_logo');
function av_change_home_logo($logo)
{
if(is_page(9) )
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
You should upload logo with arced line and link it in the code above.
Best regards,
Yigit