hello, @zeekitter
To do that, go to Appearance → Customise → Additional CSS and enter the following code:
.navbar-brand {
height: 150px; /*ADD YOUR DESIRE HEIGHT*/
margin-bottom: 10px;
}
.navbar-brand > a > img{
max-height: 150px; /*ADD YOUR DESIRE HEIGHT*/
}
.navbar-brand > img{
max-height: 150px; /*ADD YOUR DESIRE HEIGHT*/
}
@media (min-width: 768px) and (max-width: 1024px) {
.navbar-brand {
height: 100px;
}
.navbar-brand > a > img{
max-height: 100px;
}
.navbar-brand > img{
max-height: 100px;
}
}
@media (min-width: 320px) and (max-width: 767px) {
.navbar-brand {
height: 75px !important;
}
.navbar-brand > a > img{
max-height: 75px !important;
}
.navbar-brand > img{
max-height: 75px !important;
}
}
Hope it will help you.
Thank You.
-
This reply was modified 6 years, 2 months ago by
Anonymous User 16453565.