Remove tooltips

Advanced and professional portal news Joomla template with community features and various content display layouts.
GK User
Tue Oct 01, 2013 2:32 pm
Hello :)


I'm trying to remove the tooltips from the labels on this page...

http://95.142.159.173/~ebmecouk/index.p ... Itemid=155

But each time I try something, I end up losing the label text as well as the tooltip. :oops:

Can you help please?

Thanks.
User avatar
Senior Boarder

GK User
Tue Oct 01, 2013 10:50 pm
Use below css code in any css file or in override.css and enable css override option in template settings > advanced settings > css override "on".

Code: Select all
#contact-form .tooltip {
    display: none!important;
}


Above limits this removal to contact form only, if you have tooltips showing up elsewhere and you want to hide all tooltips then use below instead.

Code: Select all
.tooltip {
    display: none!important;
}


See you around...
User avatar
Platinum Boarder

GK User
Wed Oct 02, 2013 12:23 pm
Excellent! Thanks Norman. :)
User avatar
Senior Boarder

GK User
Thu Oct 03, 2013 3:24 am
No problem at all, have a nice day.
User avatar
Platinum Boarder


cron