View Full Version : blink at nav
mangmel
02-10-2016, 02:23 AM
i just added another in navigation manager new forumlink how can i blink the word ?
currectly 4.2.3 now
Max Taxable
02-10-2016, 03:31 AM
You want to make the text blink?
You can code that, but it won't show up in all browsers as it's not a supported thing. The blink element is abandoned by browsers: Firefox supported it up to version 22, and Opera up to version 12. And so on.
Anyway you can try this code:
<blink>I want this to blink</blink>
Otherwise you can google up a CSS definition for it, although still not browser supported.
RichieBoy67
02-10-2016, 06:28 AM
Max is right but you will need to search in the phrases for your specific tab and add it there.
You can use css instead of the blink tag which will give you more control and like Max said, the blink tag is depreciated and no longer supported by almost all the newer browsers.
<p class="blinking">Your text goes here</p>
.blinking {
animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
I have not tested this.I think it will work though.
I also just found this link (https://www.quora.com/How-do-you-make-blinking-text-in-HTML) online. This would probably be the best method.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.