This topic contains 1 reply, has 2 voices, and was last updated by 7Theme Support 8 years ago.
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.
Home › Forums › Theme support › Mobile Logo in Vital Theme
This topic contains 1 reply, has 2 voices, and was last updated by 7Theme Support 8 years ago.
The mobile logo in the Vital theme is distorted. According to Google inspect, the error is a height of 140px is assigned at:
/wp-content/themes/vital/7league/css/customcss.php?color_profile&ver=4.7.5
But I am not sure where to edit this. Website is radiancespraytan.com. Logo distortion only on mobile devices.
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;
}
}
You must be logged in to reply to this topic.