PDA

View Full Version : HELPHELPHELPHELPHELP PLEASE!!!!!! (html positioning..)?


pspmaster93
10-14-2007, 07:51 PM
Hey, I have 2 HTML codes

<!--Begin GameSites200 Vote--><p><a href="http://www.gamesites200.com/psp/in.php?id=****"><img src="http://www.gamesites200.com/psp/vote.gif" alt="Vote on the PSP Top 200" border="0"></a><br><a href="http://www.gamesites200.com/psp/"><img src="http://www.gamesites200.com/track.gif" alt="PSP Top 200 - Games, Videos, Wallpapers, Files, Hacks, Homebrew" border="0"></a></p><!--End Game Sites 200 Code-->

AND

<!-- Begin XtremeTop100 code -->
<p><a href="http://www.xtremetop100.com/in.php?site=**********">
<img src="http://www.xtremetop100.com/votenew.jpg" border="0" alt=" Top 100"></a><br>
<a href="http://www.xtremetop100.com/">
<img src="http://www.xtremetop100.com/tracker.jpg" border="0" alt=" Top 100"></a></p>
<!-- End XtremeTop100 code -->

but when i put them on my forum i get this...

http://fileupper.net/uploads/5b4f04e2d3.bmp (http://fileupper.net)

how can i make it so the 2 voting images are BESIDE each other not underneath??????????????

nexialys
10-14-2007, 08:17 PM
actually, learn that your thread title will not bring you more help... sometimes too much is like not at all...

you have tags like <p> and </p> that defines new paragraphs in your codes... drop these elements and the images will be side by side

pspmaster93
10-14-2007, 09:03 PM
ok, i dropped all the <p>'s and now it looks like this lol http://fileupper.net/uploads/78b871d0b9.bmp (http://fileupper.net)

Lynne
10-14-2007, 09:24 PM
You only need to drop the <p> and <\p> between the two images. These two:

</p><!--End Game Sites 200 Code-->

AND

<!-- Begin XtremeTop100 code -->
<p>

Spank
10-15-2007, 12:32 AM
You might need t put them in a table:


<table>
<tr>
<td>
<!--Begin GameSites200 Vote--><p><a href="http://www.gamesites200.com/psp/in.php?id=****"><img src="http://www.gamesites200.com/psp/vote.gif" alt="Vote on the PSP Top 200" border="0"></a><br><a href="http://www.gamesites200.com/psp/"><img src="http://www.gamesites200.com/track.gif" alt="PSP Top 200 - Games, Videos, Wallpapers, Files, Hacks, Homebrew" border="0"></a></p><!--End Game Sites 200 Code-->
</td>
<td>
<!-- Begin XtremeTop100 code -->
<p><a href="http://www.xtremetop100.com/in.php?site=**********">
<img src="http://www.xtremetop100.com/votenew.jpg" border="0" alt=" Top 100"></a><br>
<a href="http://www.xtremetop100.com/">
<img src="http://www.xtremetop100.com/tracker.jpg" border="0" alt=" Top 100"></a></p>
<!-- End XtremeTop100 code -->
</td>
</tr>
</table>

pspmaster93
10-15-2007, 02:13 PM
You might need t put them in a table:


<table>
<tr>
<td>
<!--Begin GameSites200 Vote--><p><a href="http://www.gamesites200.com/psp/in.php?id=****"><img src="http://www.gamesites200.com/psp/vote.gif" alt="Vote on the PSP Top 200" border="0"></a><br><a href="http://www.gamesites200.com/psp/"><img src="http://www.gamesites200.com/track.gif" alt="PSP Top 200 - Games, Videos, Wallpapers, Files, Hacks, Homebrew" border="0"></a></p><!--End Game Sites 200 Code-->
</td>
<td>
<!-- Begin XtremeTop100 code -->
<p><a href="http://www.xtremetop100.com/in.php?site=**********">
<img src="http://www.xtremetop100.com/votenew.jpg" border="0" alt=" Top 100"></a><br>
<a href="http://www.xtremetop100.com/">
<img src="http://www.xtremetop100.com/tracker.jpg" border="0" alt=" Top 100"></a></p>
<!-- End XtremeTop100 code -->
</td>
</tr>
</table>


YES THANKS IT WORKED!

Spank
10-15-2007, 03:14 PM
Cool, I'm glad it worked for ya.