View Single Post
Old 11-23-2011, 04:44 AM   PM User | #6
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
Regarding the background not being completely red, you have a padding on the td!

Code:
td {
   background-color:#CCC;
   padding:5px;
   padding-right:5px;
}
this padding is constricting the <a> tag! Essentially the padding is pushing the <a> tag inward.



try setting the hover to the td
Code:
#services table td:hover {
   background-color: #FF0000;
}

Last edited by Sammy12; 11-23-2011 at 04:52 AM..
Sammy12 is offline   Reply With Quote
Users who have thanked Sammy12 for this post:
kimmi_baby (11-23-2011)