LexHammer Posted February 2, 2011 Share Posted February 2, 2011 Hello, is there a way to move one object left to right or right to left without writing 10000 times Thank you Quote Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/ Share on other sites More sharing options...
BlueSkyIS Posted February 2, 2011 Share Posted February 2, 2011 CSS or tables. Quote Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168886 Share on other sites More sharing options...
nankoweap Posted February 2, 2011 Share Posted February 2, 2011 certainly not a php coding issue, but an html issue. try the "align" attribute of the paragraph tag... <p align='left'> this is to the left </p> <p align="right"> this is to the right </p> if you need to get fancier, brush up on css and tables as blueskyis mentioned. Quote Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168890 Share on other sites More sharing options...
jamesxg1 Posted February 2, 2011 Share Posted February 2, 2011 This is not PHP its CSS/HTML but try this. <div style="float:left">LEFT</div> <div style="float:right">RIGHT</div> http://www.w3schools.com/css/css_float.asp James. Quote Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168895 Share on other sites More sharing options...
LexHammer Posted February 2, 2011 Author Share Posted February 2, 2011 Thank you all. This is what i needed! Quote Link to comment https://forums.phpfreaks.com/topic/226465-make-space-more-quickly/#findComment-1168972 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.