New OOTS products from CafePress
New OOTS t-shirts, ornaments, mugs, bags, and more
Page 8 of 10 FirstFirst 12345678910 LastLast
Results 211 to 240 of 287
  1. - Top - End - #211
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Basically, I created a new class to produce tables close to the old style. But then I worked out that you can stack classes, so I created several more for you to make your tables just how you like them.

    The new classes are:
    head Will produce a table with a different header row colour, just like the old style. You need to use TH instead of TD for this colour, of course.
    alt1 Will produce the alternating light sand colour rows on the even numbered rows, just like the old style.
    alt2 Will produce alternating darker sand colour rows on the odd numbered rows, this is a new addition.
    outer_border Not actually a new class, but I did set it up to override the inside borders of these classes.
    NOTE: The alternating row colours will not work on IE8 or below.


    Examples (all examples follow the same format, with a TH row):

    Header only
    [table="width: 500, class: head"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with alternating row colours
    [table="width: 500, class: head alt1"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Alternating row colours only
    [table="width: 500, class: alt1"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with alternating row colours, no inside borders
    [table="width: 500, class: head alt1 outer_border"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with both alternating row colours
    [table="width: 500, class: head alt1 alt2"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with both alternating row colours, no inside borders
    [table="width: 500, class: head alt1 outer_border"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with new alternate alternating row colours
    [table="width: 500, class: head alt2"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with alternate alternating row colours, no inside borders
    [table="width: 500, class: head alt2 outer_border"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  2. - Top - End - #212
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Just created three more (and changed one):

    grid Changed to 1px border
    thick_grid New class with the 3px border
    thick_outer_border New class with 3px outer border and no inside borders
    thick_outer_border_grid New class with 3px outer border and 1px inside borders

    Examples:

    thick_grid
    [table="width: 500, class: thick_grid"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    thick_outer_border
    [table="width: 500, class: thick_outer_border"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    thick_outer_border_grid
    [table="width: 500, class: thick_outer_border_grid"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with both alternating row colours and thick borders
    [table="width: 500, class: head alt1 alt2 thick_grid"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with both alternating row colours and thick outer border with no inside borders
    [table="width: 500, class: head alt1 alt2 thick_outer_border"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    Header with both alternating row colours and thick outer border with thin inside borders
    [table="width: 500, class: head alt1 alt2 thick_outer_border_grid"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  3. - Top - End - #213
    Ettin in the Playground
     
    Zherog's Avatar

    Join Date
    Jan 2004
    Location
    Bensalem, PA
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by ChristianSt View Post
    So with all that (undocumented?) awesome table stuff, I pondered with the idea to make a Table Primer, with the intent to cover all things that are possible with the new table code.
    I was thinking of doing the same thing. Once again, procrastination has served me well. :)
    John Ling
    Frog God Games Lead Pathfinder Developer

    Note: unless explicitly stated otherwise, opinions in my posts are my own and not those of Frog God Games.

  4. - Top - End - #214
    Ogre in the Playground
    Join Date
    Oct 2012

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Rawhide View Post
    Header with both alternating row colours and thick outer border with thin inside borders
    [table="width: 500, class: head alt1 alt2 thick_outer_border_grid"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    That's perfect for the homebrew forums, actually. I'll definitely be making use of this one for Class/PrC details.

  5. - Top - End - #215
    Titan in the Playground
     
    Prime32's Avatar

    Join Date
    Nov 2008
    Location
    Ireland
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Can we get a class(es) for the Avatar Adoption thread that removes padding, and possibly sets maximum [td] width+height to 120px?
    A way to remove padding would also help if anyone wants to use nested tables, e.g. to simulate vertical cell merging.

    Alternatively swap the row colors, since I'm now pretty sure that the old tables went light-dark-light-dark.
    Last edited by Prime32; 2014-04-04 at 07:55 AM.

  6. - Top - End - #216
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Prime32 View Post
    Alternatively swap the row colors, since I'm now pretty sure that the old tables went light-dark-light-dark.
    No, the old table rows went like this:

    Dark Header
    Light
    White
    Light
    White
    Light
    White
    Light
    White

    Though you are right that the coloured row was second (first after the header).

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  7. - Top - End - #217
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Prime32 View Post
    Can we get a class(es) for the Avatar Adoption thread that [...] sets maximum [td] width+height to 120px?
    Not going to do this one, but you can do the width easily. Just set the width of the cells in the first row.

    Sample code:
    Spoiler
    Show
    [table="class: grid"]
    [tr]
    [td="width: 120"]1[/td]
    [td="width: 80"]2[/td]
    [td="width: 250"]3[/td]
    [td]4[/td]
    [td]5[/td]
    [/tr]
    [tr]
    [td]11111 11111 11111 11111 11111 11111[/td]
    [td]22222 22222 22222 22222 22222 22222[/td]
    [td]33333 33333 33333 33333 33333 33333[/td]
    [td]44444 44444 44444 44444 44444 44444[/td]
    [td]55555 55555 55555 55555 55555 55555[/td]
    [/tr]
    [tr]
    [td]111[/td]
    [td]222[/td]
    [td]333[/td]
    [td]444[/td]
    [td]555[/td]
    [/tr]
    [/table]


    Example:
    Spoiler
    Show
    1 2 3 4 5
    11111 11111 11111 11111 11111 11111 22222 22222 22222 22222 22222 22222 33333 33333 33333 33333 33333 33333 44444 44444 44444 44444 44444 44444 55555 55555 55555 55555 55555 55555
    111 222 333 444 555

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  8. - Top - End - #218
    Ogre in the Playground
     
    SolithKnightGuy

    Join Date
    Jun 2013
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Prime32 View Post
    You could always try something on the client-side. Here's a "retro" Greasemonkey script I wrote earlier; comment out whatever parts you don't want.
    As I am inept at this, may I ask what "comment out" means? I want sortable tables but am fine with everything else as it is now.
    Quote Originally Posted by Dire_Stirge View Post
    Don't you see it? The inert Shrieker may have more raw power, but the rock has something the Shrieker will never have. VERSATILITY.

    Also, the rock will probably be lighter than the Shrieker, allowing it to be used as a improvised thrown weapon should the need arise.

  9. - Top - End - #219
    Titan in the Playground
     
    Prime32's Avatar

    Join Date
    Nov 2008
    Location
    Ireland
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Vedhin View Post
    As I am inept at this, may I ask what "comment out" means? I want sortable tables but am fine with everything else as it is now.
    Spoiler
    Show
    // at the start of a line makes it a comment, meaning it's not executed and doesn't do anything (the UserScript block still needs to be there despite consisting of comments, but it's just to identify the file to Greasemonkey). Add comment marks to every uncommented line in the section between the UserScript block and "Begin sorttable.js"
    Last edited by Prime32; 2014-04-04 at 10:32 AM.

  10. - Top - End - #220
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Yeah, uhm, no. I didn't notice that you had posted something containing javascript. It has been removed to prevent any confusion with endorsement, sorry. We will not be endorsing any such scripts due to the risk of developer abuse, or unintended bugs.

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  11. - Top - End - #221
    Titan in the Playground
     
    Aedilred's Avatar

    Join Date
    Apr 2006
    Location
    Bristol
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    That's awesome Rawhide, thanks for updating that. The tables look better already!

    Is it possible to add this new information to the start of this thread (or another thread about the table code that maybe I've missed) so that it's convenient for future reference?

    Additionally (this might have been mentioned and I missed it, hence the above), is there any way to get the headers to left- (or indeed right-) align?
    Last edited by Aedilred; 2014-04-04 at 11:07 AM.
    GITP Blood Bowl Manager Cup
    Red Sabres - Season I Cup Champions, two-time Cup Semifinalists
    Anlec Razors - Two-time Cup Semifinalists
    Bad Badenhof Bats - Season VII Cup Champions
    League Wiki

    Spoiler: Previous Avatars
    Show
    (by Strawberries)
    (by Rain Dragon)

  12. - Top - End - #222
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    So, I hear that if you append "sortable" to the class list, something magical happens.

    [table="width: 500, class: head alt1 alt2 thick_outer_border_grid sortable"]

    111111 123456
    222222 234567
    333333 345678
    444444 456789
    555555 987654
    666666 876543
    777777 765432
    888888 654321
    999999 123321

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  13. - Top - End - #223
    Firbolg in the Playground
    Join Date
    Apr 2005
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Yer a wizard rawhide
    If my text is blue, I'm being sarcastic.But you already knew that, right?


  14. - Top - End - #224
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Seerow View Post
    Yer a wizard rawhide
    Druid, actually.

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  15. - Top - End - #225
    Firbolg in the Playground
    Join Date
    Apr 2005
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Whatever floats your boat.


    Fun experiment time!

    111 123 321
    333 345 543
    222 234 432
    333 345 543
    111 123 321



    After hitting preview: Looks like having a table header in the middle of the table causes some interesting results. It still references the top row to sort by, regardless of if it's the header or not, but the header displays the arrows.


    222
    333 345 321
    111 123 543

    After preview: looks like Colspan works beautifully with it. It sorts by the first column that it affects rather than causing any funky results like switching cells around to put them in order. Perfect.
    If my text is blue, I'm being sarcastic.But you already knew that, right?


  16. - Top - End - #226
    Titan in the Playground
     
    Prime32's Avatar

    Join Date
    Nov 2008
    Location
    Ireland
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Rawhide View Post
    Yeah, uhm, no. I didn't notice that you had posted something containing javascript. It has been removed to prevent any confusion with endorsement, sorry. We will not be endorsing any such scripts due to the risk of developer abuse, or unintended bugs.
    Is it okay to post Stylish content (i.e. CSS only), and/or post scripts on other parts of the site?

  17. - Top - End - #227
    Titan in the Playground
     
    NinjaGuy

    Join Date
    Jan 2007

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Prime32 View Post
    Can we get a class(es) for the Avatar Adoption thread that removes padding, and possibly sets maximum [td] width+height to 120px?
    A way to remove padding would also help if anyone wants to use nested tables, e.g. to simulate vertical cell merging.

    Alternatively swap the row colors, since I'm now pretty sure that the old tables went light-dark-light-dark.
    I haven't fully tested this yet, but I believe if you insert a blank [tr][/tr] at the beginning of your table (but AFTER a table header, if present), it will alternate the rest of the rows light/dark instead of dark/light

    A couple of examples, using Rawhide's tables from above:

    Header with reverse alternating row colours
    [table="width: 500, class: head alt1"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111



    Header with reverse alternating row colours, no inside borders
    [table="width: 500, class: head alt1 outer_border"]

    Spoiler
    Show
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111
    111111 111111


    This renders properly on Safari and Chrome. Haven't tested it on other browsers.
    Concluded: The Stick Awards II: Second Edition
    Ongoing: OOTS by Page Count
    Coming Soon: OOTS by Final Post Count II: The Post Counts Always Chart Twice
    Coming Later: The Stick Awards III: The Search for More Votes


    __________________________

    No matter how subtle the wizard, a knife between the shoulder blades will seriously cramp his style - Jhereg Proverb

  18. - Top - End - #228
    Bugbear in the Playground
     
    sirpercival's Avatar

    Join Date
    Oct 2011

    Default Re: Upcoming TABLE Code Changes

    So... the only problem i see is that using alt1 and alt2 prevent you from altering the bgcolor of any specific rows or cells... any suggestions?
    Last edited by sirpercival; 2014-04-04 at 05:44 PM. Reason: accidentally a word
    (member in good standing of the troll-feeder's guild)

    I am the assassin of productivity.

    Super boss Muscle Wizard avvie by Ceika.

    gitp extended sig
    minmaxboards extended sig (more stuff)

  19. - Top - End - #229
    Titan in the Playground
     
    Qwertystop's Avatar

    Join Date
    Mar 2010
    Gender
    Female

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by sirpercival View Post
    So... the only problem i see is that using alt1 and alt2 prevent you from altering the bgcolor of any specific rows or cells... any suggestions?
    Not sure that's a problem - the whole point is to set the bgcolor for you.
    Quote Originally Posted by jamieth View Post
    ...though Talla does her best to sound objective and impartial, it doesn't cover stuff like "ask a 9-year-old to tank for the party."
    My Homebrew

  20. - Top - End - #230
    Ogre in the Playground
    Join Date
    Feb 2012
    Location
    Germany

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by sirpercival View Post
    So... the only problem i see is that using alt1 and alt2 prevent you from altering the bgcolor of any specific rows or cells... any suggestions?
    You could just color all rows/cells manually, giving you the ultimate flexibility to color everything however you wish.

    [Yes, using the way you want would be easier, but since I don't think that feature is that relevant, I personally wouldn't invest much time to try to fix it.]

    Problems with [table]?
    All you want to know about [table]!
    The Order of the Stick
    Kickstarter Reward Collection

    Last updated: 2016/08/09, containing:
    9 Crayon Drawings | 21 Stick its | 47 Signature Doodles

    Custom Avatar made by the Giant.

    Thanks!

  21. - Top - End - #231
    Titan in the Playground
     
    Jasdoif's Avatar

    Join Date
    Mar 2007
    Location
    Oregon, USA

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by sirpercival View Post
    So... the only problem i see is that using alt1 and alt2 prevent you from altering the bgcolor of any specific rows or cells... any suggestions?
    Strange, I can set cells just fine....

    Spoiler
    Show

    A S i
    n T o
    E r

    Middle cell sure looks purple to me.


    Maybe it's browser-specific? Using Firefox here.
    Feytouched Banana eldritch disciple avatar by...me!

    The Index of the Giant's Comments VI―Making Dogma from Zapped Bananas

  22. - Top - End - #232
    Bugbear in the Playground
     
    sirpercival's Avatar

    Join Date
    Oct 2011

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Qwertystop View Post
    Not sure that's a problem - the whole point is to set the bgcolor for you.
    Unless you want for any reason to have the alt1/alt2 color scheme but keep the ability to have other cells or rows a different color, like for example I need in the Homebrew Martial Discipline Compendium...

    Quote Originally Posted by ChristianSt View Post
    You could just color all rows/cells manually, giving you the ultimate flexibility to color everything however you wish.

    [Yes, using the way you want would be easier, but since I don't think that feature is that relevant, I personally wouldn't invest much time to try to fix it.]
    I actually can't do that at all, because where I need this, I run into post character limits if I try.

    Quote Originally Posted by Jasdoif View Post
    Strange, I can set cells just fine....

    Spoiler
    Show

    A S i
    n T o
    E r

    Middle cell sure looks purple to me.


    Maybe it's browser-specific? Using Firefox here.
    No, yours works. Also, if I try it here, it works, but it doesn't work in the table I care about.

    Hm. I shall investigate further.

    EDIT: figured it out. i am teh derp. sorry!
    Last edited by sirpercival; 2014-04-04 at 06:53 PM.
    (member in good standing of the troll-feeder's guild)

    I am the assassin of productivity.

    Super boss Muscle Wizard avvie by Ceika.

    gitp extended sig
    minmaxboards extended sig (more stuff)

  23. - Top - End - #233
    Bugbear in the Playground
    Join Date
    Nov 2010
    Location
    Vancouver BC Canada
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    If the mods were to make a sticky with all the table templates in the first post it might help damage control homebrewers who are currently staring at dozens of broken tables.

    Also, maybe entering 111111111's into all the entries might not intuitively illustrate which line is which.

    For a post's max character count, does this ignore the breaks needed to accomplish this new table code?
    Last edited by Hanuman; 2014-04-05 at 03:35 PM.

  24. - Top - End - #234
    Bugbear in the Playground
     
    gr8artist's Avatar

    Join Date
    Sep 2012
    Location
    Homebrew
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    How would you make a table where there were no grid lines in the header (2 rows thick) but there were grid lines in the lower rows?

    Saves Spells Per Day
    Level BAB Fortitude Reflex Will Special 0th 1st 2nd 3rd 4th 5th 6th 7th 8th 9th
    1st
    +
    +
    +
    +
    2nd
    +
    +
    +
    +
    3rd
    +
    +
    +
    +
    4th
    +
    +
    +
    +
    5th
    +
    +
    +
    +
    6th
    +
    +
    +
    +
    7th
    +
    +
    +
    +
    8th
    +
    +
    +
    +
    9th
    +
    +
    +
    +
    10th
    +
    +
    +
    +
    11th
    +
    +
    +
    +
    12th
    +
    +
    +
    +
    13th
    +
    +
    +
    +
    14th
    +
    +
    +
    +
    15th
    +
    +
    +
    +
    16th
    +
    +
    +
    +
    17th
    +
    +
    +
    +
    18th
    +
    +
    +
    +
    19th
    +
    +
    +
    +
    20th
    +
    +
    +
    +

    I want no black lines within the dark brown. How do?
    My Homebrew and Extended Signature
    Current avatar: Charza Sahlaren, by gr8artist

  25. - Top - End - #235
    Firbolg in the Playground
    Join Date
    Apr 2005
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by gr8artist View Post
    How would you make a table where there were no grid lines in the header (2 rows thick) but there were grid lines in the lower rows?



    I want no black lines within the dark brown. How do?
    Testing:

    Saves Spells Per Day
    Level BAB Fortitude Reflex Will Special 0th 1st 2nd 3rd 4th 5th 6th 7th 8th 9th
    1st
    +
    +
    +
    +
    2nd
    +
    +
    +
    +
    3rd
    +
    +
    +
    +
    4th
    +
    +
    +
    +
    5th
    +
    +
    +
    +
    6th
    +
    +
    +
    +
    7th
    +
    +
    +
    +
    8th
    +
    +
    +
    +
    9th
    +
    +
    +
    +
    10th
    +
    +
    +
    +
    11th
    +
    +
    +
    +
    12th
    +
    +
    +
    +
    13th
    +
    +
    +
    +
    14th
    +
    +
    +
    +
    15th
    +
    +
    +
    +
    16th
    +
    +
    +
    +
    17th
    +
    +
    +
    +
    18th
    +
    +
    +
    +
    19th
    +
    +
    +
    +
    20th
    +
    +
    +
    +


    Yep, looks like that works. It's a bit backwards, but what you have to do is make the table with just the outer border, then apply the grid class to the table rows where you want it.


    I wonder, is there some way to get the vertical lines, but not horizontal? With the striped colors, the horizontal lines aren't as necessary, but without vertical lines the tables end up looking kind of cluttered.
    If my text is blue, I'm being sarcastic.But you already knew that, right?


  26. - Top - End - #236
    Bugbear in the Playground
    Join Date
    Nov 2010
    Location
    Vancouver BC Canada
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    What's your resolution? Mine's 1200x800 and your tables still require a scroll bar.

  27. - Top - End - #237
    Titan in the Playground
     
    Yora's Avatar

    Join Date
    Apr 2009
    Location
    Germany

    Default Re: Upcoming TABLE Code Changes

    For some reason the tables I am making don't get the head bar colored brown. Any idea what I've been doing wrong?

    Spoiler
    Show
    Class Level Spell Points Spells Known Max. Spell Lvl. Known
    1 3 3 1st
    2 7 5 1st
    3 13 7 2nd
    4 19 9 2nd
    5 25 11 3rd
    6 33 13 3rd
    7 42 15 4th
    8 52 17 4th
    9 63 19 (4th)
    10 74 21 (4th)
    11 88 23 (4th)
    12 102 25 (4th)
    We are not standing on the shoulders of giants, but on very tall tower of other dwarves.

    Spriggan's Den Heroic Fantasy Roleplaying

  28. - Top - End - #238
    Miniature Giant Space Hamster in the Playground Administrator
     
    Rawhide's Avatar

    Join Date
    Sep 2005
    Location
    Australia
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Quote Originally Posted by Yora View Post
    For some reason the tables I am making don't get the head bar colored brown. Any idea what I've been doing wrong?

    Spoiler
    Show
    Class Level Spell Points Spells Known Max. Spell Lvl. Known
    1 3 3 1st
    2 7 5 1st
    3 13 7 2nd
    4 19 9 2nd
    5 25 11 3rd
    6 33 13 3rd
    7 42 15 4th
    8 52 17 4th
    9 63 19 (4th)
    10 74 21 (4th)
    11 88 23 (4th)
    12 102 25 (4th)
    You need to use [th] instead of [td] for header rows.

    "My Hobby: Replacing your soap with gravy" by rtg0922, Doll and Clint "Rawhide" Eastwood by Sneak

  29. - Top - End - #239
    Titan in the Playground
     
    Yora's Avatar

    Join Date
    Apr 2009
    Location
    Germany

    Default Re: Upcoming TABLE Code Changes

    I see. Thanks.
    We are not standing on the shoulders of giants, but on very tall tower of other dwarves.

    Spriggan's Den Heroic Fantasy Roleplaying

  30. - Top - End - #240
    Barbarian in the Playground
     
    RedWizardGuy

    Join Date
    Jan 2009
    Location
    Auckland
    Gender
    Male

    Default Re: Upcoming TABLE Code Changes

    Finally!
    Spoiler: Sample Arcane Spellcasting class
    Show
    Saves Spells Per Day
    Level BAB Fort Ref Will Special 0th 1st 2nd 3rd 4th 5th 6th 7th 8th 9th
    1st +0 +0 +0 +1 Initial class features 3 1
    2nd +1 +0 +0 +3 4 2
    3rd +1 +1 +1 +3 4 2 1
    4th +2 +1 +1 +4 4 3 2
    5th +2 +1 +1 +4 Bonus feat 4 3 2 1
    6th +3 +2 +2 +5 4 3 2 2
    7th +3 +2 +2 +5 4 4 3 2 1
    8th +4 +2 +2 +6 4 4 3 3 2
    9th +4 +3 +3 +6 4 4 4 3 2 1
    10th +5 +3 +3 +7 Bonus feat 4 4 3 3 2
    11th +5 +3 +3 +7 4 4 4 4 3 2 1
    12th +6/+1 +4 +4 +8 4 4 4 4 3 3 2
    13th +6/+1 +4 +4 +8 4 4 4 4 4 3 2 1
    14th +7/+2 +4 +4 +9 4 4 4 4 4 3 3 2
    15th +7/+2 +5 +5 +9 Bonus feat 4 4 4 4 4 4 3 2 1
    16th +8/+3 +5 +5 +10 4 4 4 4 4 4 3 3 2
    17th +8/+3 +5 +5 +10 4 4 4 4 4 4 4 3 2 1
    18th +9/+4 +6 +6 +11 4 4 4 4 4 4 4 3 3 2
    19th +9/+4 +6 +6 +11 4 4 4 4 4 4 4 4 3 3
    20th +10/+5 +6 +6 +12 Bonus feat 4 4 4 4 4 4 4 4 4 4
    Last edited by Southern Cross; 2014-04-09 at 05:24 PM.
    President and founder of the "Jonathan Harker Was The True Hero of Dracula" Fan club.
    To join, you may either add J.H.W.T.T.H.O.D to your sig or modify the sig above.
    (Avatar darkwizard.png by Teutonic Knight.)




    Spoiler: What Pokemon are you?
    Show

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •