can i get a little coding help?

Collapse

Recommended Videos

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • scottysivley
    Rookie
    • Dec 2007
    • 227

    #1

    can i get a little coding help?

    how do i code a chart so i can finally make a dynasty thread?
    i would love for it to be all nice and aligned for the stats.
    thanks
    MEMPHIS TIGERS
    Oakland Raiders
    Memphis Grizzlies
    Mizzou Tigers

    PSN: yoscotty_
  • Hooe
    Hall Of Fame
    • Aug 2002
    • 21555

    #2
    Re: can i get a little coding help?

    My HTML is rusty, but something like this...

    HTML Code:
    <table border="1"><tbody><tr><td>PLAYER NAME</td><td>RUSH YDS</td><td>TOUCHDOWNS</td></tr><tr><td>Emmitt Smith</td><td>18,355</td><td>174</td></tr><tr><td>Marshall Faulk</td><td>12,279</td><td>136</td></tr></tbody></table>
    ...will generate this...

    <table border="1"><tbody><tr><td>PLAYER NAME</td><td>RUSH YDS</td><td>TOUCHDOWNS</td></tr><tr><td>Emmitt Smith</td><td>18,355</td><td>174</td></tr><tr><td>Marshall Faulk</td><td>12,279</td><td>136</td></tr></tbody></table>

    Quick-and-easy table.

    Basically, any time you want to have a new row, you use
    HTML Code:
    <tr>
    and
    HTML Code:
    </tr>
    to end the row. Inside each row you use
    HTML Code:
    <td>
    and
    HTML Code:
    </td>
    to designate column breaks.

    I'm not good really at explaining this stuff, and my experience in HTML is rather limited, but I'd suggest playing with it a little bit yourself to get a good feel for it.

    Comment

    • mgoblue
      Go Wings!
      • Jul 2002
      • 25477

      #3
      Re: can i get a little coding help?

      http://www.operationsports.com/forum...sty-sites.html

      There's a link to the HTML hints thread in our dynasty forum...might have more help in the questions people asked and whatnot....Krioniq gave you a great sample though that'd work!
      Nintendo Switch Friend Code: SW-7009-7102-8818

      Comment

      Working...