I'm using http://www.dynamicdrive.com/dynamici...smoothmenu.htm. The tabs created all have a down-arrow to the right of the text.
Is there a way to remove the down-arrow for certain tabs.
Thanks for the help
Printable View
I'm using http://www.dynamicdrive.com/dynamici...smoothmenu.htm. The tabs created all have a down-arrow to the right of the text.
Is there a way to remove the down-arrow for certain tabs.
Thanks for the help
No they don't, not on the demo. Did you follow the instructions as to how to construct the markup? If the li has a child ul, it will have a submenu and a down arrow (on horizontal menus, right arrow on vertical ones). If you still want submenus but not down arrows, and only not for certain submenus, give their parent li's a class of "noarrow" and put this in the stylesheet after any other styles for the downarrowclass:
If you just want to get rid of all down arrows:Code:.noarrow .downarrowclass {display: none !important;}
These should work, I'll double check.Code:.downarrowclass {display: none !important;}
I only wanted to remove the downarrow on menus that DO NOT have submenus.
I'll work on the "noarrow" option. Thanks
If they don't have submenus, that is - no child elements other than their links, if any, there should be no arrow anyway.
duh. My bad. I had a blank ul in there. I took them out and it is correct. Sorry