| Author |
Message |
TC
Joined: 10 Apr 2003 Posts: 3 Location: Fort Collins, CO
|
Posted: Tue Jun 10, 2003 10:35 pm Post subject: refund/return policy |
|
|
| Glad to see the forums working again. Just a quick question. If I can't get coolmenu to layout how I want it on our new web site, is it possible for me to get a refund. |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Tue Jun 10, 2003 11:00 pm Post subject: |
|
|
| Yes, this is possible but definitely not desirable. And first of all please make sure that script really does not suit your needs. It is good idea to ask techsupport (jssupport@cooldev.com) for help - we will do our best to help you integrate our scripts into your site. |
|
| Back to top |
|
 |
TC
Joined: 10 Apr 2003 Posts: 3 Location: Fort Collins, CO
|
Posted: Tue Jun 10, 2003 11:05 pm Post subject: |
|
|
Wow, thanks for the quick response time.
I guess I should explain what I am trying to do. The script I am currently using works ok, but it is not a cross-browser script and doesn't work in anything other than IE.
For my main menu items, I want them to display in a tan background. For the horizontal dropdown items I want the buttons to display in black. As a placeholder I am using a black table cell to keep this space open on the site. Will the coolmenu.js script overlay over this empty cell with the black background or will it "push everything further down the page?
Thanks again,
TC |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Wed Jun 11, 2003 1:17 am Post subject: |
|
|
| Private answer goes to you... |
|
| Back to top |
|
 |
Walt Guest
|
Posted: Thu Jun 12, 2003 5:31 pm Post subject: Can you copy me on that answer |
|
|
I have the same issue. One more question - Can I launch a window.open? I want to do a nohref and window.open for our support form (no bars, etc.). It only seems to open in the same window.
NEVER MIND WINDOW.OPEN OTHER POST ANSWERED MY QUESTION.
Still want to get copy of how to config. subs differently.
Thanks, Walt
waltg@bellsouth.net |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Fri Jun 13, 2003 4:05 pm Post subject: |
|
|
You can assign different styles to submenu or even to item individually:
1) for submenu:
| Code: | {'code':'Submenu',
'sub':[
{'style':MYSTYLE},
{'code':'Item 1'},
{'code':'Item 2'}
]
}, |
2) for an item:
| Code: | | {'code':'My item', 'format':{'style':MYSTYLE}}, |
MYSTYLE must be defined like this:
| Code: | var my_color = {"border":"#666666", "shadow":"#DBD8D1", "bgON":"white","bgOVER":"#B6BDD2"};
var my_css = {"ON":"clsCMOn", "OVER":"clsCMOver"};
var MYSTYLE = {"border":1, "shadow":2, "color":my_color, "css":my_css}; |
|
|
| Back to top |
|
 |
|