Status
Not open for further replies.

kicker-hp_27

Active Member
914
2010
5
0
Hello ,how can i make those links straight and not left -

[SLIDE]http://lulzimg.com/i13/f90c16.png[/SLIDE]

here is the code:

PHP:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="15%" align="left">
<tr>
<tr>
<td class="alt1">
<a href="http://thumperdc.com"><b><center>ThumperDC.com</center></b></a>
</a></td></tr></tabe>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="10%">
<tr>
<tr>
<td class="alt1">
<a href="http://upwarez.com"><b><center>Upwarez</center></b></a>
</a></td></tr></tabe>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="10%">
<tr>
<tr>
<td class="alt1">
<a href="http://piratez.ws"><b><center>Piratez</center></b></a>
</a></td></tr></tabe>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="10%">
<tr>
<tr>
<td class="alt1">
<a href="http://premiumz.org"><b><center>Premiumz</center></b></a>
</a></td></tr></tabe>
 
5 comments
hmm i dont get exactly what you mean but if it is like you wants all of those link in one line try this

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="15%" align="left">

change 15% to 100% something and remove that align="left" to remove align left.

if anything else plz explain.
 
You mean, like this?

PHP:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" align="left">
<tr>
    <td class="alt1">
        <a href="http://thumperdc.com"><b><center>ThumperDC.com</center></b></a>
    </td>
    <td class="alt1">
        <a href="http://upwarez.com"><b><center>Upwarez</center></b></a>
    </td>
    <td class="alt1">
        <a href="http://piratez.ws"><b><center>Piratez</center></b></a>
    </td>
    <td class="alt1">
        <a href="http://premiumz.org"><b><center>Premiumz</center></b></a>
    </td>
</tr>
</table>
 
You mean, like this?

PHP:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" align="left">
<tr>
    <td class="alt1">
        <a href="http://thumperdc.com"><b><center>ThumperDC.com</center></b></a>
    </td>
    <td class="alt1">
        <a href="http://upwarez.com"><b><center>Upwarez</center></b></a>
    </td>
    <td class="alt1">
        <a href="http://piratez.ws"><b><center>Piratez</center></b></a>
    </td>
    <td class="alt1">
        <a href="http://premiumz.org"><b><center>Premiumz</center></b></a>
    </td>
</tr>
</table>

Yes FTW ,thanks(y)
 
Status
Not open for further replies.
Back
Top