Hello all, Just figured this out. You can remove / hide the jevents footer ( copyright text ) very easily. All you need is to put the following piece of css into your Joomla websites templates css file.
By the way jevents is one of the most popular extension for joomla. You can use it to show a nice events calendar into your joomla website. Jevents shows an small footer at the bottom of the page. that says JEvents v2.2.8 Copyright © 2006-2012 or JEvents v2.2.7 Copyright © 2006-2012 . It means it shows the version number and the copyright date. Also a backlink. My small piece of css will simply make it invisible to the website visitors keeping your website a professional look.
Now if you want to remove it completely you will have to edit the view.php for the extension. I will tell more about that in my next post..
#jevents_body > p{
display:none !important;}
By the way jevents is one of the most popular extension for joomla. You can use it to show a nice events calendar into your joomla website. Jevents shows an small footer at the bottom of the page. that says JEvents v2.2.8 Copyright © 2006-2012 or JEvents v2.2.7 Copyright © 2006-2012 . It means it shows the version number and the copyright date. Also a backlink. My small piece of css will simply make it invisible to the website visitors keeping your website a professional look.
Now if you want to remove it completely you will have to edit the view.php for the extension. I will tell more about that in my next post..