Events Made Easy Forums How do I … Can I change the >>?

Tagged: ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #53635
    Anonymous
    Inactive

    Is there an easy way to change the >> and << for the previous and next month to something else?

    Thanks!
    Denise

    #53647
    Franky
    Keymaster

    With a little bit of jquery this is easily done:
    http://stackoverflow.com/questions/901909/change-html-text-from-link-with-jquery
    In your case, an example would be:

    
    <script type="text/javascript">
    jQuery(document).ready( function() {
       jQuery('.month_name a.prev-month').text('new text');
       jQuery('.month_name a.next-month').text('other text');
    });
    </script>
    

    In the next version of EME this can be added in a new setting called “eme html footer”, so you would not need to change your theme for this type of things.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘How do I …’ is closed to new topics and replies.
Scroll to Top