Bewildered
Member
Posts: 10
Registered: 3/23/2007
Member Is Offline
|
| posted on 6/17/2007 at 08:24 PM |
|
|
How to make the border zero or solid white?
In my drop-down menus, there is a horizontal line between items. This line assumes the color(s) of whatever is behind it. How do I make it solid
white...or make it disappear?
My styles are as follows.
/* My Site - root level; text properties for states: normal, hover, click */
.TM4i0 {
font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;;
color: #FFFFFF;
font-size: 12px;
font-weight: bold;
font-style: normal;
text-decoration: none;
}
/* My Site - root level; box properties for states: normal, hover, click */
.TM4o0 {
background: #344EA1;
border width: 0px;
padding: 0px;
text-align: center;
vertical-align: middle;
text-decoration: none;
}
/* My Site - root level; table properties for states: normal, hover, click */
.TM4t0 {
background: #344EA1;
}
/* My Site - sub levels; text properties for states: normal, hover, click */
.TM5i0 {
font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;;
color: #FFFFFF;
font-size: 12px;
font-weight: normal;
font-style: normal;
text-decoration: none;
}
/* My Site - sub levels; box properties for states: normal */
.TM5o0 {
background: #344EA1;
border width: 0px;
padding: 4px;
text-align: left;
vertical-align: middle;
text-decoration: none;
}
/* My Site - sub levels; box properties for states: hover, click */
.TM5o1 {
background: #FFB80C;
padding: 4px;
text-align: left;
vertical-align: middle;
text-decoration: none;
}
/* My Site - sub levels; table properties for states: hover, click */
.TM5t1 {
background: #FFB80C;
}
Thanks!
|
|
|
tigra
Administrator
Posts: 1963
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 6/18/2007 at 03:29 PM |
|
|
In Tigra Menu GOLD samples the border is created by setting up the table cellspacing and flooding it with the table color. If you you want to remove
the border then set the table cellspacing in template.js to 0. The border must be solid and around all items in the menu block. Make sure your CSS is
valid "border width: 0px;" doesn't sound right.
|
|
|
|