Hi My question is pretty simple: How can i get the source boxes like this site has: http://movie25.com/the-twilight-saga-new-moon-2009_6338.html My site and how i have it now: http://www.moviehills.tv/movies/the-twilight-saga-new-moon/ Regards, Max
Well yeah i kinda figured that out by the source code but i still dont know how to get it myself then..
<table cellspacing="0" cellpadding="0"> <tbody> <tr> <td>Box 1</td> <td>Box 2</td> <td>Box 3</td> </tr> </tbody> </table> Code (markup): now you can just style them to your preference. in the previous example, just add padding and a fixed width. also make the colors (if you need help, reply here or just PM me). I wrote this code just to show the base, but if you want me to duplicate the boxes for you, just let me know and I'll make one for you.
Go to view -> Source and find this table if u want css then go to the header, find css file name, write it to the adress bar and that's all
Use the padding or margin attributes in CSS to do this, but I'd recommend learning some basic HTML first.
Learn some basic HTML, that might help in future: <table width="200" border="1"> <tr> <td height="56"><div align="center">hello</div></td> </tr> <tr> <td height="86"> <div align="center">hello </div></td> </tr> </table> Code (markup):