I just finished changing my text links in side category box to have background buttons that change on rollover. It works well, however there is space in between each button as in attached image. How can I make these position flush one right under each other without any spacing?
Id also like to make the button a couple more pixels left aligned so its flush right to side category box border.
Im not sure i even need all the lines of code like margin, padding, etc. Im still figuring this out as I go along.
Here's the code from stylesheet affecting these buttons:
Code:/* categories box parent and child categories */ A.category-top, A.category-top:visited { color: #ffffff; background-image: url(/images/button-bk.jpg); background-repeat: no-repeat; display: block; width: 180px; height: 33px; margin: 0; margin-bottom:0px; padding: 0; text-decoration: none; font-weight: bold; line-height: 20px } /*Im adding a new hover to try and add a background color button effect*/ A.category-top:hover { color: #cccccc; background-image: url(/images/button-bk-over.jpg); background-repeat: no-repeat; display: block; width: 180px; height: 33px; margin: 0; margin-bottom:0px; padding: 0; background-color: 000000; text-decoration: none; font-weight: bold; line-height: 20px }



