joshsonunionsquare dot com/index1.php I just added a 3rd button on the main section titled 'Photos' and as you can see it is being cut off. I've checked my code and it seems all 3 buttons have the same margins so I'm not sure what could be wrong. Any help is appreciated
I see some code in the .css that might be causing this : border-rightx solid # If it's not that that just hit a few   before and after the text and it should show fine.
I just found a solution but thanks anyways . I had to change this code... .slider-post .button { background: url(images/buttonbg.png) repeat-x scroll center top; margin:0 10px 0 0; padding:9px 14px 9px 12px; cursor:pointer; font:bold 14px Georgia, "Times New Roman", Times, serif; color:#ffffff; border:none; border-right:px solid #; border-bottom:0px solid #; } Code (markup): to this... .slider-post .button { background:transparent url(images/buttonbg.png) repeat-x scroll center top; color:#FFFFFF; cursor:pointer; float:left; font-family:Georgia,"Times New Roman",Times,serif; font-size:14px; font-weight:bold; text-align:center; width:82px; } Code (markup):