Hello
I have a website with wpml support. the address is http://www.shconstruction.co.il
1. How can i increase The logo size only on mobile (responsive) view?
2. How can i increase a font height on “Phone Number or small info text” (on all languagese) also if it possible to change font color
Thanks a lot
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) {
.responsive .logo img {
max-height: 140px !important;
}
}
.phone-info span{
font-size: 16px;
color: red;
}
Cheers!
Josue