Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #253341
    #253342
    This reply has been marked as private.
    #253481

    Hey!

    Thank you for using the theme!

    I checked the website and the logo looks fine. If you want to show the full resolution of the logo, you need to increase the height of the header container. Add this on Quick CSS or custom.css:

    .html_header_top.html_header_sticky.html_large #header_main .container, .html_header_top.html_header_sticky.html_large.html_main_nav_header .main_menu ul:first-child > li a {
    height: 160px;
    line-height: 160px;
    }

    You can find all css codes on wp-content/themes/enfold/css folder.

    Cheers!
    Ismael

    #253497

    Thanks Ismael. I did modify some of the code in my child theme after posting my support request. Still needs some tweaking for how it works on all devices. It’s the responsiveness that causes issues.

    However, I still can’t find where are all this code originates. There are 7(!) CSS files in that folder! And where is the “img height=’100′ width=’300′ ” coded in the HTML? In a PHP function? It’s in container / .logo / a href / img

    #253837

    Hey!

    Thank you for the update.

    You can find the function that generates the logo on framework > php > function-set-avia-frontend.php. Look for the avia_logo function. You can find the height and width attribute there. You can copy the whole avia_logo function on your child theme’s functions.php or if you want to get fancy, use the logo filter hook.

    $logo = apply_filters('avf_logo_final_output', $logo, $use_image, $headline_type, $sub, $alt, $link);
    

    I hope it helps you.

    Cheers!
    Ismael

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