I have two links, they have to be side by side, but they also have to be display:block b/c they have bg images... they're not falling side-by-side, even though have margin:0 & padding:0 for both of them..
(actually, one of them is a link, other one is an input type="image")
Code:<div id="buttons"> <a href="" id="surveyOverlayCancel">cancel</a> <input type="image" id="surveyOverlaySubmit" class="submitBtn" src="images/btn_submit_survey_overlay.jpg" value="submit" alt="submit" /> </div>would appreciate some suggestions.. thank you..Code:#surveyOverlaySubmit { margin:0; padding:0; } a#surveyOverlayCancel { display:block; margin:0; padding:0; background:url('../images/btn_cancel_survey_overlay.jpg') no-repeat; width:82px; height:32px; text-indent:-9999px; }







Bookmarks