Activity Stream
48,167 MEMBERS
61085 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 7 of 7
  1.     
    #1
    Member
    Website's:
    zomgbbqpizza.com evilddl.com scenemarket.org

    Wink HTML Table Help

    Hi, i am useless with html especially when it comes to tables.

    Can anyone tell me what to change in this code so the boxes appear side by side?

    Code: 
        <table class="tablebg" width="50%" cellspacing="0" id="post-3">
        <caption><div class="cap-left"><div class="cap-right">Latest Searches</div></div></caption>
                    <table width="50%" border="0">
                    <tr><td class="row1"><?=$core->templateVar("recentSearches")?></li></td></tr>
                    </table>
    <br clear="all" /> 
         <table class="tablebg" width="50%" cellspacing="0" id="post-3">
        <caption><div class="cap-left"><div class="cap-right">Top Searches</div></div></caption>
                    <table width="50%" border="0">
                    <tr><td class="row1"><?=$core->templateVar("TopSearches")?></li></td></tr>
                    </table>
    <br clear="all" />


    Thanks
    DEViANCE Reviewed by DEViANCE on . HTML Table Help Hi, i am useless with html especially when it comes to tables. Can anyone tell me what to change in this code so the boxes appear side by side? <table class="tablebg" width="50%" cellspacing="0" id="post-3"> <caption><div class="cap-left"><div class="cap-right">Latest Searches</div></div></caption> <table width="50%" border="0"> <tr><td class="row1"><?=$core->templateVar("recentSearches")?></li></td></tr> </table> <br Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    rootw.net
    Ad a tr on the first table then put td's around both of them.

    <table>
    <tr>
    <td>stuff here1</td>
    <td>stuffhere2</td>


    you may need to do
    <td>
    <table>
    </table>
    </td>

    If that doesnt make sense then say so and ill do it lol

  4.     
    #3
    Member
    try removing <br clear="all" /> in the middle of the code
    Signature too big, removed by staff.

  5.     
    #4
    Member
    Website's:
    warezxtc.com
    Code: 
    <table width="100%" cellspacing="0" cellpadding="0">
    <tr>
        <td>
            <table class="tablebg" width="100%" cellspacing="0" id="post-3">
            <caption>
            <div class="cap-left">
                <div class="cap-right">
                    Latest Searches
                </div>
            </div>
            </caption>
            <table width="100%" border="0">
            <tr>
                <td class="row1">
    <?=$core->templateVar("recentSearches")?></li>
                </td>
            </tr>
            </table>
        </td>
        <td>
            <table class="tablebg" width="100%" cellspacing="0" id="post-3">
            <caption>
            <div class="cap-left">
                <div class="cap-right">
                    Top Searches
                </div>
            </div>
            </caption>
            <table width="100%" border="0">
            <tr>
                <td class="row1">
    <?=$core->templateVar("TopSearches")?></li>
                </td>
            </tr>
            </table>
        </td>
    </tr>
    </table>

  6.     
    #5
    Member
    Website's:
    zomgbbqpizza.com evilddl.com scenemarket.org
    Quote Originally Posted by narutoroot View Post
    Ad a tr on the first table then put td's around both of them.

    <table>
    <tr>
    <td>stuff here1</td>
    <td>stuffhere2</td>


    you may need to do
    <td>
    <table>
    </table>
    </td>

    If that doesnt make sense then say so and ill do it lol
    Lol i am a lil drunk and would be very gratful if you can just edit and post the code.

    As for the BR thing, yeah one will need to go, the other is stopping it hitting the footer. I am truely crap at html.

    EDIT: dam you really are as fast as a jet @cyber Thanks yet again!!!!

  7.     
    #6
    Member
    Website's:
    warezxtc.com
    Quote Originally Posted by DEViANCE View Post
    Lol i am a lil drunk and would be very gratful if you can just edit and post the code.

    As for the BR thing, yeah one will need to go, the other is stopping it hitting the footer. I am truely crap at html.
    Try out my code above.

  8.     
    #7
    Member
    Website's:
    zomgbbqpizza.com evilddl.com scenemarket.org
    Thank you

    Should be:
    Code: 
    <table width="100%" cellspacing="0" cellpadding="0">
    <tr>
        <td>
            <table class="tablebg" width="100%" cellspacing="0" id="post-3">
            <caption>
            <div class="cap-left">
                <div class="cap-right">
                    Latest Searches
                </div>
            </div>
            </caption>
            <table width="50%" border="0">
            <tr>
                <td class="row1">
    <?=$core->templateVar("recentSearches")?></li>
                </td>
            </tr>
            </table>
        </td>
        <td>
            <table class="tablebg" width="100%" cellspacing="0" id="post-3">
            <caption>
            <div class="cap-left">
                <div class="cap-right">
                    Top Searches
                </div>
            </div>
            </caption>
            <table width="50%" border="0">
            <tr>
                <td class="row1">
    <?=$core->templateVar("TopSearches")?></li>
                </td>
            </tr>
            </table>
        </td>
    </tr>
    </table>
    Looks sexy now

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [For Hire] PSD to Table-less, Shorthand CSS/HTML (slice job)
    By AlternativeWeb in forum Completed Transactions
    Replies: 0
    Last Post: 13th Jan 2012, 03:29 PM
  2. centering a Table
    By AJ Blacklisted in forum Web Application/Script Support
    Replies: 4
    Last Post: 31st May 2011, 07:40 AM
  3. HTML table and CSS Help
    By kiddo in forum Webmaster Discussion
    Replies: 5
    Last Post: 3rd Dec 2010, 06:42 PM
  4. Table contenttype
    By GoPantheoN in forum vBulletin
    Replies: 0
    Last Post: 22nd Sep 2010, 12:44 PM
  5. Replies: 8
    Last Post: 21st Jul 2010, 06:13 PM

Tags for this Thread

BE SOCIAL