- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2012 02:33 AM
Recntly, I have set the marquee tag in banner text.It's working fine.The problem is when we logout the session its redirect to login page in that,marquee tag has shown in the banner.Could you please anyone help on this?
Please find the attachment for your refernce.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2012 08:06 AM
I haven't tried it yet, but a Global UI Script that modifies the header to your liking should do the trick.
Keep in mind that the marquee element is a non-standard element in HTML. You might want to build JavaScript similar to the news scroller instead or utilize jQuery animations that accomplish the same goal.
UPDATE: I just tried it and it works, but it is a bit tricky. I did this under the assumption that the "Rightmost" property is being used. It might be different if it were the My Company Banner field.
UI Script
Name: Change Banner
Active: true
Global: true
Script:
try { // Use try-catch so if the code fails somewhere else, it doesn't hose up JavaScript completely
window.parent.$('nav_header_text').innerHTML = '<strong>My custom banner</strong>'; // You can inject whatever HTML you like
// or do other magic to the window.parent.$('nav_header_text') object via PrototypeJS
} catch (e) {}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2012 01:18 PM
If you found this thread helpful, be sure to mark it answered so the community knows it is a solid solution to your question!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-12-2012 06:09 AM
This is awesome Tony. I've had a solution I've used for years broken because of this issue and your UI script method works beautifully. It even gets around the issue of seeing the code when you collapse the header. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2012 08:56 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2012 09:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2012 09:47 AM
This was Aspen I tried it on.