Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #823053

    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.

    #823068

    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

    #829152

    Nikko, you’re the best! Thanks so much.

    #829155

    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

    #829164

    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! :)

    #829165

    Hi,

    You are welcome, we are always happy to help and we appreciate your appreciation of our work :)

    Thanks! You too have a great day!

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘different logo color on specific page’ is closed to new replies.