Shrink Homepage Header Button
- The topic ‘Shrink Homepage Header Button’ is closed to new replies.
Need help? Check out our Support site, then
Any way to shrink the Homepage Header Button? I have “How we help your business” which makes the button awkwardly large when viewing from a smartphone. I do not want to remove any characters, just shrink the button itself. Thanks in advance for your help!
The blog I need help with is: (visible only to logged in users)
Hi there,
Since you have the Custom Design upgrade, you can add the following CSS to Appearance > Customize > CSS to change the font size on the button on smaller screens:
@media only screen and (max-width: 768px) {
.wf-active .cta-red {
font-size: 14px;
}
}
You can adjust the 14px to a different size if you prefer.