Hi
I am trying to reduce the size of my logo in the header. The logo’s actual size is 420x120px. When I try and change the width in theme settings, nothing appears to reduce the size.
Theme Options > General > Header Settings > Logo Max Width
When I try different widths using the above settings, the logo remains the same original size.
To see whats going on, in Chrome, I change the Max Logo Size to 250px, I then right-click over the logo and click ‘inspect’ to see the console. This shows me this setting:
.header-logo img {
max-width: 250px;
}
However, the logo remains, and I see this code being output for the logo:
<img src="https://mydomain.com/wp-content/uploads/2018/06/logo.png" alt="" width="420" height="120" class="logo-default">
It seems the max-logo has no effect when trying to reduce the size of the logo. How do I go about doing this in the theme options (if at all possible)? I can guess how to use css to achieve it, but most themes make it easy to alter the logo dimensions from within theme settings, to be honest.
regards