Home › Forums › Theme support › Mobile Logo in Vital Theme › Reply To: Mobile Logo in Vital Theme
Hi,
you can change it in WP admin -> Appearance -> Theme Options -> General -> Customize WordPress -> Logo Height.
If you need a special CSS code for mobile only for your style.css file, you can use this one:
@media only screen and (max-width: 479px) {
#container #brand img {
height:auto !important;
width:auto !important;
}
}