Tagged: logo
I’d like to use a logo that is larger then the recommended size. Is that possible? I have added to my site but it gets cut off in mobile views. Also, is there a way to proportionally resize headlines to fit various mobile sizes? I like to use large font sizes for headlines.
Hey mftonto2and3,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
.logo img { height: 110px; }
You can use media queries to adjust font sizes for different screen sizes like so
@media only screen and (min-width: 1024px) {
h2 {
font-size: 24px;
}
}
If you need further assistance please let us know.
Best regards,
Victoria