MyBB Community Forums

Full Version: Help me make a new line in this code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is my affiliates page and when I put the BR in it doesn't make a new line, below is the page and the code.

Page:http://pixelmeter.com/misc.php?page=Affiliates


Code:
<table width="100%" cellpadding="6" cellspacing="1" border="0" class="tborder">
<tbody>
            <tr>
                <td class="thead" colspan="2">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['newbox_e']}.gif" id="newbox_img" class="expander" alt="[-]" title="[-]" /></div>
             <center><strong>Affiliates</strong></center>
                </td>
            </tr>
        </tbody>
        <tbody style="{$collapsed['newbox_e']}" id="newbox_e">  
            <tr>
              <td class="trow1"><center><img src="http://i991.photobucket.com/albums/af40/forgedinhellx/submit.png"/></center></td>
              <td class="trow2"><center><img src="http://pixelmeter.com/images/logo_600x80.png" alt="logo" /><br /></center>
            </tr>
        </tbody>
    </table>
<br/>
<br />

not
<br/>
Oh...hopefully that will work one second.
Still didn't work -
<td class="trow1"><center><img src="http://i991.photobucket.com/albums/af40/forgedinhellx/submit.png"/><br /></center></td>
You've put it inside other tags.

<td class="trow1"><center><img src="http://i991.photobucket.com/albums/af40/forgedinhellx/submit.png"/></center></td><br />

Use that.
Still does not work
If your purpose is to put one line space under the image than this is what you need :

<td class="trow1"><center><img src="http://i991.photobucket.com/albums/af40/forgedinhellx/submit.png" /><br /><br /></center></td>
Still doesn't work, I want the images to be under each other so I can put text under them and stuff.