'Avada Wordpress Theme, cannot resize logo ( using cafe demo content )
I'm using the Avada Wordpress theme and have installed the Cafe Site Demo Content. I went into Appearance > Theme Options > Logo and uploaded my image logo file but it seems to lock it to a tiny size in that top left menu corner. I remade the logo image at double the size and re uploaded it and it still is the same small size on the website, I cannot find an option to allow me to increase the logo size. Does anyone have any ideas?
Solution 1:[1]
Your header container has a fixed height of 70px in your css. You need to change into a new height of 100px for instance and delete the max-width of img.
.header_mid {
height: 100px;
}
img{
/* max-width: 100%; */
}
This should work!
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Christian Langer |