• Resolved RAZREYE

    (@razreye)


    The default size of the AAA when displayed on the page is pretty small. In the Settings, I can see how to change the title of the widget but I do not see anywhere to increase the size of the 3 A’s.

    Is there a special php or CSS code that could achieve this instead?

    Thanks in advance,
    Scott

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Too bad the font-size is set through the html attribute. Setting the font-size in a CSS file will not work I expect.
    It should be possible to set it with some JavaScript.
    Does this work for you?

    jQuery(document).ready(function($) {
        jQuery( 'a.zeno_font_resizer_minus' ).css( 'font-size', '1.0em' );
        jQuery( 'a.zeno_font_resizer_reset' ).css( 'font-size', '1.3em' );
        jQuery( 'a.zeno_font_resizer_add' ).css( 'font-size', '1.6em' );
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Increase Displayed Size of AAA’ is closed to new replies.