|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Same table left and right?
Hello,
I made a sponsors box that says on the LEFT side Sponsor Links but i would like to add more text to the line but i want it to show on the right side. This is for a vBulletin message board. Can someone tell me how i can do it? Code:
<tr> <td class="thead" align="left">Sponsored Links</td> </tr> |
|
#2
|
|||
|
|||
|
are you using css too? I would normall just move it with css as I take it you mean you want to copy the box and have one on the left and one on the right?
|
|
#3
|
||||
|
||||
|
Thanks for the reply 1-clan,
This is for the same ad box. On the left side of the title i want it to say "Sponsor Links" while on the right side i want to say something else. Example... ------------------------------------------------------------------------ Sponsor Links <blank space> <blank space> Something else over here. ------------------------------------------------------------------------ |
|
#4
|
|||
|
|||
|
<tr>
<td>sponsers links</td> <td width="200" align="right">other text</td> </tr> but you should use css |
|
#5
|
||||
|
||||
|
CSS would be much easier (although there's no particular reason why you should use it)...
You can obviously split the table into multiple columns, and - so the text doesn't look messy (if you have multiple lines) align both left (either make column one so wide that column 2 is pushed across to the right or add a center column that's empty) or - if you need this to fall within one table cell/column - add a sub-table (you can add within a "colspan" if necessary).
__________________
ClickyB "The quality of the visitor is more important than the volume".. Egol 22nd Feb 2008
New to SEO / SeoChat? Start : HereForum Rules & Posting Guidelines Canonicalisation Solutions |
|
#6
|
||||
|
||||
|
I don't know anything about CSS
It does not come out the way i want http://img5.imageshack.us/img5/6549/errorhph.jpg The td is creating a new table but i want it on the same table as sponsor links. |
|
#7
|
|||
|
|||
|
<table>
<tr> <td width="500">text one</td> <td>text two</td> </tr> </table> This will place text on the left and 500px to the right will be text two on the same row. Did you create the website? whats the link? |
![]() |
| Viewing: SEO Chat Forums > Other > HTML Coding > Same table left and right? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|