Comments Stephan started the conversationMarch 21, 2018 at 10:30amHello. Is it possible to determine the logo size in the header exactly? I want a different size for the desktop version than for the mobile view. Thanks and GreetingsStephan 1,975Support repliedMarch 21, 2018 at 12:52pmHi Stephan, it can be done with CSS media queries.#logo img { height: 60px;}this is the normal logo size@media only screen and (max-width: 767px) { #logo img { height: 60px; }}and this is the logo for devices with max screen width of 767pxof course change the size (60px) and add the code to theme options -> styling options -> custom CSSThank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy Sign in to reply ...
Hello. Is it possible to determine the logo size in the header exactly? I want a different size for the desktop version than for the mobile view.
Thanks and Greetings
Stephan
Hi Stephan,
it can be done with CSS media queries.
#logo img {
height: 60px;
}
this is the normal logo size
@media only screen and (max-width: 767px) {
#logo img { height: 60px; }
}
and this is the logo for devices with max screen width of 767px
of course change the size (60px) and add the code to theme options -> styling options -> custom CSS
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy