Hi,
How do I increase the logo on Iphones and Androids a little based on all the previous CSS code you have provided (I’m sure you have to login to see what you have given me previously)? I don’t want to change the logo size on Ipads.
Thanks
Hey webguy007,
You can target the logo on mobile screens using CSS like this:
@media only screen and (max-width: 767px) {
.logo img {
your CSS goes here
}
}
Best regards,
Rikard
Hi,
Hi,
Could you or another support member be a little more specific with the css code to use?
I have no clue what should go where you put “your css goes here”.
Thanks!:
@media only screen and (max-width: 767px) {
.logo img {
your CSS goes here
}
}
Thank you
Hi,
You can try something like this:
@media only screen and (max-width: 767px) {
.logo img {
width:400px !important;
}
}
If you want to alter websites then it’s handy to know CSS, it’s the very basics of web development and design: https://www.w3schools.com/css/default.asp
Best regards,
Rikard