If you have a logo taller than 40px in your vBulletin 5 forum, it will be shrunk to 40px height when you rotate your smartphone to landscape view. This is because by default, vB5 sets max-height of logo to 40px when in landscape mode.
To fix this issue, you need to override that and remove the max-height. To do this, add the very simple CSS below in css_additional template in AdminCP or in Sitebuilder > Style > CSS Editor.
Enjoy!
To fix this issue, you need to override that and remove the max-height. To do this, add the very simple CSS below in css_additional template in AdminCP or in Sitebuilder > Style > CSS Editor.
Code:
/* Fix for small logo height in mobile landscape view - START */
.l-small #header .site-logo img {
max-height: none;
}
/* Fix for small logo height in mobile landscape view - END */



Comment