This topic has 2 replies, 2 voices, and was last updated 5 years, 2 months ago ago by Olga Barlow
Good afternoon, the size of the logo does not change in the theme settings. In the settings themselves, it increases and decreases, when publishing the size of the logo on the site does not change. How can I increase the size of the logotype in the website headers?
Hello,
Add the following code to Theme Options > Custom CSS
.header-logo img {
max-width: 500px;
}
@media only screen and (max-width: 480px), (max-width: 812px) and (orientation: landscape){
.header-logo img {
max-width: 180px !important;
}
}
Regards
You must be logged in to reply to this topic.Log in/Sign up