Adding Count Up Number to your website
This article will show you how to quickly animate your numeric data in a fun way. The numbers will run from start to finish in the set time ???

Next, Unzip and copy countUp.js to media/libs folder.
Goto Custom HTML module to config:

In the HTML field, enter the code below:
<script src="/media/libs/countUp.js"></script>
And Code below for JS field:
(function($){
$(document).ready(function(){
$('.counter').each(function(){
var el=$(this), options={}, endVal=0;
if(typeof el.attr('data-start')!='undefined')
options.startVal=1*el.attr('data-start');
if(typeof el.attr('data-duration')!='undefined')
options.duration=1*el.attr('data-duration');
if(typeof el.attr('data-end')!='undefined')
endVal=1*el.attr('data-end');
if(endVal<=0) return true;
new countUp.CountUp(el[0], endVal, options).start();
});
});
})(jQuery);
Set Module Assignment is On all pages (or pages where you want use count up). Choose a the positioin for this module (usually the footer). You should also hide its title.
Now, in order to insert the count up effect, you use this code in the editor (article or Custom module):
<span class="counter" data-start="<VALUE>" data-end="<VALUE>" data-duration="<VALUE>"></span>
- data-start (optional) - Number to start, default is 0 (zero)
- data-duration (optional) - Animation duration in seconds, default is 2.
Example:
<span class="counter" data-end="3000"></span>
<span class="counter" data-start="1000" data-end="3000"></span>
<span class="counter"data-start="1000" data-end="3000" data-duration="5"></span>
Enjoy!
I have been googling how to change the menu colours, as the black text on my purple background is not very readable. However everything I have tried to change the text colour of the Off-Canvas main menu text to white did not work.
Would you know what custom CSS I would need to change all menu items to white text (including submenus).
Probably need background colour to not be white when hovering over submenus
Any help you can provide would be gratefully appreciated (or a pointer to some useful help).
Thank you
see
https://siteupdate.vedicmaths.org/index.php
InPre-Update Check for Joomla 5.4.4
for Off-Canvas it says
Joomla cannot detect the extension's compatibility with the target version of Joomla.
have you implemented the compatibility stuff for Joomla to upgrade extensions correctly ?
Have got two off canvas menus working (1. for tools and 2. for main menu)
However I can only get the Main menu to display the first level of menu items.
Have you any suggestions for getting the sub menu items to display ?
N.B. the menu item with sub menu items does display a down arrow, but trying to click on it only display the item at the main menu level.
see
https://siteupdate.vedicmaths.org/index.php
If you want to see where I have currently got to