hello all.. <div align="right"> will place anything on the right most corner.. now, i want to place something at the right, but not extreme right.. i want to leave some pixels at the right corner.. is it possible??
Should be something like <div style="padding: 0px 10px 0px 0px;"> Replace the 10 with what amount of padding you need..
probably better of separating your html and css code. HTML <div id="stuff">some stuff here</div> CSS #stuff { padding-right: 10px; }