Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #657262

    Hello, How do I replace the main logo on a page.
    Thanks

    #657270

    Hey jbkaplan!

    Please take a look here

    and let us know if that works out for you.

    Thanks a lot

    Cheers!
    Basilis

    #657563

    Hey!

    Please add following code to functions.php file of your child theme in Appearance > Editor

    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;
    }

    Regards,
    Yigit

    #674359

    Thanks this worked but some people say the logo is not sharp.

    #674502

    Hi,

    Glad to hear that it worked! If there is still an issue with the logo, would you mind providing a precise link to your site, showing the logo in question?

    Best regards,
    Jordan

    #674867

    http://www.jeniferkaplan.com/kapitalize/

    it looks fuzzy on some browsers.

    Thanks

    #675236

    Hi,

    You have a Coming Soon page active to we can’t see the problem. Please post admin login details in private. What browsers are the problem? Please post screenshots if possible.

    Regards,
    Rikard

    #675383

    you can see a screen shot of the blurry logo here, the browser is Firefox
    http://christinedesign.com/ScreenShot2016.png

    #675431

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-mozilla .logo img {
        image-rendering: -moz-crisp-edges !important;
    }
    

    Best regards,
    Yigit

    #675445

    This made my real logo that is on all the other pages look jagged around the edges. This is the logo that you helped my add on the page below. I was added in theme functions

    #677114

    Hi,

    Can you please try uploading your logo in bigger size for the chosen page and check if that helps?

    Best regards,
    Yigit

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.