Way to disable the popup box hovering over navigation bar?
5 posters
Page 1 of 1
Re: Way to disable the popup box hovering over navigation bar?
Hello,
I don't know if this can be done. You can't remove the alt text via the AP or the templates, you also can't prevent it from coming up using css either. From what I have researched it MIGHT be possible using Javascript, but I don't know if that will work here or not.
Perhaps @TheCrow or someone with some JS knowledge might be able to answer that part or not.
-Brandon
I don't know if this can be done. You can't remove the alt text via the AP or the templates, you also can't prevent it from coming up using css either. From what I have researched it MIGHT be possible using Javascript, but I don't know if that will work here or not.
Perhaps @TheCrow or someone with some JS knowledge might be able to answer that part or not.
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Way to disable the popup box hovering over navigation bar?
Basically you want to remove the tooltips, correct?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Way to disable the popup box hovering over navigation bar?
im not sure what to do with that link even after reading, can you help me step by step lol
Re: Way to disable the popup box hovering over navigation bar?
open a new javascript set to all pages and add this
- Code:
$('a').removeAttr('title');
Re: Way to disable the popup box hovering over navigation bar?
When you create the new JavaScript , did you copy and paste the code? If yes, did the numbers on the left side get added to the code? If yes, remove them.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Way to disable the popup box hovering over navigation bar?
Oi,
We need to target the images, not the links themselves:
If this doesn't work either, this means we'd need to wait for the document to be ready in order to execute the JS. If it's the case, this should do:
We need to target the images, not the links themselves:
- Code:
$('a.mainmenu img').removeAttr('title');
If this doesn't work either, this means we'd need to wait for the document to be ready in order to execute the JS. If it's the case, this should do:
- Code:
$(function() {
$('a.mainmenu img').removeAttr('title');
});
TonnyKamper likes this post
Similar topics
» How do I get the same effect on my forum as when hovering this forum's navigation bar?
» Hovering over memberlist glow
» How to stop Text hovering
» Hovering online icon near name.
» Links are hovering where they shouldnt be
» Hovering over memberlist glow
» How to stop Text hovering
» Hovering online icon near name.
» Links are hovering where they shouldnt be
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum