(2012-07-22, 04:16 AM)illusionalp Wrote: [ -> ]ok mate your choice but html wont help you at all it is totally different than css
Quote:<table border="1">
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
</table>
it will look like this
i Got it as you see
http://legitmods.com
Now how do i align it to the left ? With <center></center>??
nope <center> will align it to the center not the left
add this after "<table >
align=left
it will look like this
<table align="left" border="1" >
(2012-07-22, 04:16 AM)illusionalp Wrote: [ -> ]ok mate your choice but html wont help you at all it is totally different than css
Quote:<table border="1">
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
</table>
it will look like this
or should iintergrate a .css file and put the margin
<style type="text/css">
* { margin: 0; outline: none; }
body { background-color: #444444; }
.c { clear: both; }
#wrapper { margin: 0 auto; padding: 0 40px 60px 40px; width: 960px; }
h2 { padding: 20px 0 10px 0; font-size: 24px; line-height: 40px; font-weight: normal; color: #adc276; text-shadow: 0 1px 3px #222222; }
</style>
(2012-07-22, 04:46 AM)360revo Wrote: [ -> ][quote='illusionalp' pid='888831' dateline='1342930617']
ok mate your choice but html wont help you at all it is totally different than css
Quote:<table border="1">
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
<tr>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
</table>
Look at it now :>
[quote='illusionalp' pid='888834' dateline='1342932132']
nope <center> will align it to the center not the left
add this after "<table >
align=left
it will look like this
<table align="left" border="1" >
Okay i have messed Around with the css File for the Black Center And Now take a look Tell me what you think or what i should change..
PHPunderstood