Viewing 3 replies - 1 through 3 (of 3 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hi @tayserafy,

    1. Inspect the Logo Size and Position:
    2. Check Theme Customization Options:

    – Go to your WordPress dashboard.
    – Navigate to Appearance > Customize.
    – Look for any options related to the logo size or placement.
    – Adjust the logo settings as needed.

    3. Custom CSS Solution:

    – If your theme doesn’t provide specific logo customization options, you can add custom CSS to adjust the logo size.

    Go to Appearance > Customize > Additional CSS.

    – Add the following CSS code to resize the logo for the desktop:
    @media screen and (min-width: 768px) {
    /* Adjust the width and height values as needed */
    .site-branding img {
    width: 200px; /* Change to your desired width */
    height: auto; /* Maintain aspect ratio */
    }
    }

    – Replace 200px with the desired width for your logo.

    Hope this helps! ??

    @addweb-solution-pvt-ltd: Kindly use the CODE block or button when pasting code here in the support forum, so it’ll be formatted properly and to prevent the forum software from mangling it.

    Hi @tayserafy1,

    Actually You have 2 logo show in site. you can use this CSS for solving this issue.
    img.custom-logo {
    display: none;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Logo mis sized and wrong shape only on desktop’ is closed to new replies.