| Author |
Message |
Corine Guest
|
Posted: Sat Jun 21, 2003 1:39 pm Post subject: Top Logo in the Style script ? |
|
|
Is there a way to add a logo in the style script, so that it shows up in all pages?
Thanks for your help. |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Sat Jun 21, 2003 8:39 pm Post subject: |
|
|
| Sorry, but how does your question match "COOLjsMenu" topic? If I'm missing something please explain. |
|
| Back to top |
|
 |
Corine Guest
|
Posted: Sun Jun 22, 2003 7:07 am Post subject: |
|
|
I installed COOLjsMenu on my pages. All is working fine, but I would like to have the top Logo/banner showing up along with the Menu when opening them instead of inserting it in each page in the html code. Can that be done and in which script?
Hope you understand what I'm meaning... |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Thu Jun 26, 2003 9:00 pm Post subject: |
|
|
Try to add following piece of code to your menuitems.js, at the very end of the file.
| Code: | window.COOLjsMenu_old = COOLjsMenu;
COOLjsMenu = function (name, items) {
var m = window.COOLjsMenu_old(name, items);
document.write('some HTML codesome HTML codesome HTML codesome HTML codesome HTML codesome HTML codesome HTML codesome HTML code');
} |
You can replace 'some HTML code...' text with your own HTML code, probably it will be some absolutely positioned layer... |
|
| Back to top |
|
 |
|