lilay_ Posted February 13, 2014 Posted February 13, 2014 Hi. I know I just posted a thread asking for help, but I now I have another problem. :P On my pet app, I'm making a likes and dislikes section and would like them side by side instead of on top of eachother For example like this: (without the dashes, and with the pictures above each column) Likes-----------------------Dislikes stuff-------------------------stuff stuff-------------------------stuff Sorry it's hard to explain but hopefully you know what I mean. The petpage is at /~onwai Thanks so much :) Quote
Mouseykins Posted February 13, 2014 Posted February 13, 2014 The easiest way to do this would probably be to use a table. Here's an example you can use to start with: <table> <th>Likes</th><th>Dislikes</th> <tr><td>like example</td><td>dislike example</td></tr> </table> For more information on how tables work you can go to: Izzy's HTML and CSS Guide or you can go to W3Schools. Both are a great place to start. lilay_ 1 Quote
lilay_ Posted February 13, 2014 Author Posted February 13, 2014 Thank you so much. Guides are useful but sometimes it looks like a foreign language. lol but thankfully I'm starting to understand it better. :) Quote
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.