Quote:
Originally Posted by Velocity Classic Cars
looks better - but the customer no es feliz.
|
Yes. Do you want to get rid of the red border and make it all black? If so:
I think you still have these lines (all in a row) in your ecwid custom CSS theme:
Code:
/New Stuff/
table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected td.tabTopLeft {
background:
color: #000000;
}
/* Current category links */
div.ecwid-categoriesMenuBar td.gwt-MenuItem-selected span.ecwid-categories-category,
div.ecwid-categoriesMenuBar td.gwt-MenuItem-current span.ecwid-categories-category,
td.ecwid-categories-vertical-table-cell-selected span.ecwid-categories-category,
table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected span.ecwid-categories-category {
color: #009dde;
Try replacing all of them with
Code:
/* New Stuff */
table.ecwid-categoriesTabBar table.gwt-TabBarItem-selected td {
background-image: none !important;
}
It should remove all the red background images at once, fix the 'New Stuff' comment syntax error and change back the color from light blue to (kind of) orange.