• my logo displays correctly on mobile and pc on all my pages except my homepage. on the homepage it is larger on pc, and on mobile it completely obscures the menu. how do i fix this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Please upload your logo, recommended logo size should be between 262×80

    I also want to if I upload big logo, my logo display fit to the recommended theme logo (262×80)

    Thread Starter AconiteWolf

    (@aconitewolf)

    i’ve in the meantime found this solution. put this in your (child) theme’s functions.php:

    // Add specific CSS class by filter
    add_filter( ‘body_class’, ‘my_class_names’ );
    function my_class_names( $classes ) {

    $classes[] = ‘woocommerce-page’;// add ‘class-name’ (in hierdie geval ‘woocommerce-page’) to the $classes array

    return $classes;// return the $classes array
    }

    It’s work. Thanks
    But at my site, my logo too small on mobile

    Theme Author Madars

    (@cohhe)

    We will make sure that this is fixed in next update.

    Best,
    Cohhe

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘logo on homepage is larger and not responsive (to mobile for instance)’ is closed to new replies.