Custome Category & Sub-Cat Buttons
Hello,
I've managed to add a background image to my category buttons that changes on the :hover and :active commands, but i want a differant image for the sub categories. at the moment its just display's the category image at the top of the sub-list, this doesn't look very good at all.
Anyone know who i might be able to achive this?
my css:
.ecwid-categories-vertical-table-cell-selected{
background-image:none;
background-color:#fff;
}
.ecwid-categories-vertical-table-cell{
background:url('userfiles/img/btns.jpg') 0 0 no-repeat;
margin:0px;
padding:0px;
width: 180px;
height: 30px;
}
.ecwid-categories-vertical-table-cell:hover{
background:url('userfiles/img/btns.jpg') -180px 0 no-repeat;
}
.ecwid-categories-vertical-table-cell:active{
background:url('userfiles/img/btns.jpg') -360px 0 no-repeat;
}
Thanks
|