One menu option error

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
mqcarpenter
Advanced
Advanced
Posts: 16
Joined: Tue May 04, 2004 5:44 pm
Contact:

One menu option error

Post by mqcarpenter »

I am happy with the menu system, but there is ONE column that seems to have a fixed width, and I can not get rid of it. The menu options and data are the same as others, but it refuses to adjust width like the others. I even rearranged it, rebuilt it, etc. Here is the link:

http://www.sarmacollections.com

The column with issues is under "Our Staff". See all the white space at the end?

Here is a snip from the menu_data file.

Code: Select all

with(milonic=new menuname("Tech")){
style=menuStyle;
aI("text=Placement Submission;showmenu=place;");
aI("text=Billing System Access;url=/tech/bsa01.html;");
aI("text=Account Management;url=/tech/am01.html;");
aI("text=Phone Call Campaigns;url=/tech/pho01.html;");
}

with(milonic=new menuname("tif")){
style=menuStyle;
aI("text=Collection Associates;url=/staff/ca01.html;showmenu=coll;");
aI("text=Sales and Service Staff;url=/staff/sss01.html;");
aI("text=Technical Support Staff;url=/staff/tss01.html;");
}
You can see that the code options match others that do work properly. Any help is appreciated.

TIA[/url]
User avatar
Andy
Milonic
Milonic
Posts: 3308
Joined: Sun May 19, 2002 8:23 pm
Location: Menu Developer
Contact:

Post by Andy »

Hi,

The problem is your CSS.

menu2 is a reserved word, in fact menu# is a no no, see this in your style sheet. It's causing the problem.

Code: Select all

#menu2 TD {
	WIDTH: 235px
}
Cheers
Andy
mqcarpenter
Advanced
Advanced
Posts: 16
Joined: Tue May 04, 2004 5:44 pm
Contact:

Post by mqcarpenter »

BINGO!

Thank you so much
Post Reply