- This topic has 1 reply, 2 voices, and was last updated 9 years, 8 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › Can I change the >>?
Is there an easy way to change the >> and << for the previous and next month to something else?
Thanks!
Denise
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.