Hi guys
I wonder if you could help. I’m creating an enfold blog for a charity that helps people who have poor eyesight. The clients wants to know if there is a control I can add to the pages so the viewer can increase / decrease the text size???
Thanks for your help guys
gonzobrum
Hey!
There are some plugins you can try:
https://wordpress.org/plugins/zoom-widget/
https://wordpress.org/plugins/wp-font-resizer/
Best regards,
Josue
Thanks for the advice Josue, Zoom looks like a winner. Any ideas how I could have it display in the header area above the menu?
Can you post a link to the website?
Cheers!
Josue
Yeah sure, its http://www.in-good-hands.org/
I’ve added the zoom plugin as a widget in the footer for now, Would look good if I could get it alongside the tel number in the header.
Hi,
Open /includes/helper-main-menu.php and look for line 68:
if($phone) { echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>"; }
Replace it by this:
if($phone) { echo "<div class='phone-info {$phone_class}'><span>".do_shortcode($phone)."</span></div>"; }
Then put the Zoom shortcode along with the number here:
Regards,
Josue
Fantastic, thanks for the help!