AliPro Dec 19, 2018 · 11:03 am #11176
how can set a smaller headre img size for smaller screens?
🙂
how can set a smaller headre img size for smaller screens?
🙂
Hi, which image are you looking to change?
Thanks. The forum doesn’t support email replies.
The logo is already quite small, do you want to make it smaller than this?

logo 🙂
I don`t mean on mobile – only like small 15″ laptops 🙂
You can try something like:
@media (max-width: 1100px) {
.site-header, .site-header .container, .site-header .site-branding-container, .main-navigation .menu-search {
height: 100px !important;
}
.site-header .site-branding img {
max-height: 100px !important;
}
}Adjust the max-width value and the height values as required.