Is there a way to keep the text in the footer from dropping down on the iPad in the standard view. The email address is dropping down a line. It works fine in landscape mode.
Hey robertwood04!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
section#text-4 * {
font-size: 13px;
}
Cheers!
Yigit
Is there a way to do this on mobile only?
Hi!
Yes, please replace the code with following one
@media only screen and (max-width: 768px) {
section#text-4 * { font-size: 13px; }}
Regards,
Yigit
Thanks again. I had just figured that one out.