anybody good with HTML? List breaks?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • GFED
    Confirmed User
    • May 2002
    • 8121

    #1

    anybody good with HTML? List breaks?

    How do I get a column break on my page at http://adultwebvoyeur.com/html/index.php? I want 1-10 in one column, and 11-20 in the next column beside it.


    My break code:

    [tr]
    [td align="center" colspan="3"]
    ###COLUMN BREAK###
    [/td]
    [/tr]
    https://www.flow.page/savethechildren
  • pudcat
    Confirmed User
    • Mar 2003
    • 1169

    #2
    PHP Code:
    <ol>
    ......
    </ol>
    <ol start="11">
    ....
    </ol> 
    
    SUBMIT YOUR BABE GALLERIES

    PROMOTE YOUR BLOG HERE

    always looking for hardlinks icq #207011694

    Thunder-Ball.net, good for hardlink exchanges

    Comment

    • juicylinks
      So Fucking Banned
      • Apr 2001
      • 122992

      #3
      hit me up if you beed help hurry up though cause i got 2 chciks coming over in 15 min

      Comment

      • buddyjuf

        #4
        Originally posted by juicylinks
        hit me up if you beed help hurry up though cause i got 2 chciks coming over in 15 min
        sure you do

        Comment

        • Snake Doctor
          I'm Lenny2 Bitch
          • Mar 2001
          • 13449

          #5
          I would just nest a 2 column table inside of the td tag.
          sig too big

          Comment

          • GFED
            Confirmed User
            • May 2002
            • 8121

            #6
            theme.php
            PHP Code:
                global $bgcolor1, $bgcolor2;
                echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\"><tr><td>\n";
                echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\"><tr><td>\n";
            echo "<table><b>Top Referring Sites</b><br>";
            [b]include('/home/adultwv/public_html/compact/compact.ssi');[/b]
            echo "</table>";
                echo "</td></tr></table></td></tr></table>\n<br>"; 
            
            compact main
            PHP Code:
            <tr>
            <td align="right"><font face="Verdana" size="2"><b>#%OVERALL_RANK%#.</b> &nbsp;</font></td>
            <td><font face="Verdana" size="2"><a href="#%OUT_URL%#" target="_blank"><b>#%SITE_TITLE%#</b></a></font></td>
            <td align="right"><font face="Verdana" size="2">&nbsp; &nbsp; &nbsp;<b>#%CURRENT_IN%#/#%CURRENT_OUT%#</b></font></td>
            </tr> 
            
            any idea what to change?
            https://www.flow.page/savethechildren

            Comment

            • C_U_Next_Tuesday
              WW4L
              • Oct 2002
              • 10581

              #7
              Originally posted by Lenny2
              I would just nest a 2 column table inside of the td tag.
              yeppers.. good solution.

              I would find what you are looking for and view their source..
              I dont have lists but i have a two column table on my site if you care to check it out..might help

              http://bettylove.com/links1.html

              Comment

              • GFED
                Confirmed User
                • May 2002
                • 8121

                #8
                oh, I forgot to mention, I'm using Autorank... so I'm not sure how to break this table into two columns...

                The compact main loops and the break code displays after the 10th loop... what do I need for the break code exactly?
                https://www.flow.page/savethechildren

                Comment

                • buzzard
                  Confirmed User
                  • Aug 2002
                  • 1276

                  #9
                  here

                  Comment

                  • GeXus
                    Confirmed User
                    • May 2003
                    • 3320

                    #10
                    Just do this..

                    PHP Code:
                    <table><td valign="top"><table>-- ur 1-10 here</table></td><td><td valign="top"><table>-- ur 11-20 here</table></td></table> 
                    

                    Comment

                    • GFED
                      Confirmed User
                      • May 2002
                      • 8121

                      #11
                      https://www.flow.page/savethechildren

                      Comment

                      • GFED
                        Confirmed User
                        • May 2002
                        • 8121

                        #12
                        got it thanks!
                        https://www.flow.page/savethechildren

                        Comment

                        Working...