I recently added a logo to my website located at
www.theestablishmenthairdressing.com
, but I am encountering an issue where the logo appears very small in the top-left corner of the header.
Upon inspecting the code using Safari
, it seems that there is a size restriction for the logo built into the theme:
<h1 class="header-logo">
<a href="http://www.theestablishmenthairdressing.com/" rel="home">
<img class="" width="50" height="50" src="//www.theestablishmenthairdressing.com/wp-content/uploads/2017/08/Establishment-LOGO-header.png" alt="The Establishment Hairdressing" />
</a>
</h1>
I have attempted to change this by adding custom CSS to the child theme's style.css file:
h1.header-logo {
width: 200px !important;
}
Unfortunately, this modification did not have the desired effect. If anyone could assist me with resolving this issue, I would greatly appreciate it.