This topic has 6 replies, 3 voices, and was last updated 8 years ago ago by Rose Tyler
Hello need help resizing the logo on my mobile view. If this is not possible is there a way to display different logo for mobile and tablet views?
Hello,
Try to add different size for logo in Custom CSS tablet/landscape/mobile.
Regards,
Rose Tyler.
Okay, yeah i’ve tried several things and it seems like its not working. Is this the image class? .header-logo img.logo-fixed
my css is not very advanced ^_^
Hello,
Try to use this code in Theme Options > Styling > Custom CSS > Custom CSS for mobile:
.header-logo img {
max-width: 250px !important;
}
Best regards,
Jack Richardson.
Cool that made it bigger thank yo. is there anything i can add to center it?
Hello,
Add this code in Custom CSS:
@media only screen and (max-width: 480px){
.template-container .header-logo {
max-width: 270px !important;
}
.header-logo img {
max-width: 250px !important;
}
}
Regards,
Rose Tyler.
You must be logged in to reply to this topic.Log in/Sign up