Hello all! I need the logo on the Our Work page to be a different png. Is there an easy way to accomplish this?
Thank you in advance.
Hey peanuttario,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.page-id-18 .logo img {
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(https://domain.com/newlogo.png) no-repeat;
width: 300px;
height: 76px;
padding-left: 300px;
}
Just replace http://domain.com/newlogo.png with the url of the logo you want to use. Hope this helps :)
Best regards,
Nikko
Nikko, you’re the best! Thanks so much.
Hey!
Glad Nikko could help!
Alternatively, you can add following code to Functions.php file in Appearance > Editor and change page ID (“9” in example below)
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if(is_page(9) )
{
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
Best regards,
Yigit
Hi Yigit!
That’s very kind of you to offer an alternative. That’s great to know and i’ll keep in mind for the future. Really appreciate all the work you guys do both on the forum and within the theme.
Have a great day! :)