Starfinder Playlist
Page 1 of 2 12 Last

Thread: FG Tables...

  1. #1
    Doswelk's Avatar
    Join Date
    Jul 2005
    Location
    Surrey, UK
    Posts
    2,679

    FG Tables...

    How many of the following table options work in FG?

    # ROWSPAN=Number (rows spanned by the cell)
    # COLSPAN=Number (columns spanned by the cell) - This works I know
    # ALIGN=[ left | center | right | justify | char ] (horizontal alignment)
    # VALIGN=[ top | middle | bottom | baseline ] (vertical alignment)
    # WIDTH=Pixels (cell width)
    # HEIGHT=Pixels (cell height)
    # NOWRAP (suppress word wrap)
    # BGCOLOR=Color (cell background color)

    As far as I can tell only Colspan seems to work, is this right?

    I am trying to write a VB app to create tables (might never get it finished) and I want to know what options I need to include.

    Thanks

  2. #2
    Hallo, i bump this post up as I've found this issue too. I'm currently building an A Game of Thrones d20 module (just making modifications to the d20 SRD) and I've tried to change the width of some table columns just to find it impossible.

    Here's the code:
    Code:
    	<table width="100%">
    		<tr decoration="underline">
    			<td colspan="3">
    				<b>Age Adjusments</b>
    			</td>
    		</tr>
    		<tr decoration="underline">
    			<td width="25%">
    			        <b>Age Category</b>
    			</td>
    			<td>
    				<b>Ability Adjusments</b>
    			</td>
    			<td>
    				<b>Skill Adjustments*</b>
    			</td>
    		</tr>
    		<tr>
    			<td width="25%">Very young (below 7)</td>
    			<td>Discuss with the GM</td>
    			<td>Discuss with the GM</td>
    		</tr>
    		<tr>
    			<td width="25%">Young Child 7-8</td>
    			<td>-4 Str, +2 Dex, -3 Con, +2 Cha</td>
    			<td>+6 Hide, +2 Climb, +1 Bluff**</td>
    		</tr>
    		<tr decoration="underline">
    			<td width="25%">Child 9-11</td>
    			<td>-3 Str,+2 Dex, -3 Con, +2 Cha</td>
    			<td>+4 Hide, +2 Climb, +2 Bluff**</td>
    		</tr>
    		<tr>
    			<td width="25%">Early teen 12-13</td>
    			<td>-2 Str, +1 Dex, -2 Con, +1 Cha</td>
    			<td>+2 Hide, +2 Climb, +2 Bluff**</td>
    		</tr>
    		<tr>
    			<td width="25%">Young adult 14-15</td>
    			<td>-1 Str, -1 Con</td>
    			<td>+1 Hide, +1 Climb, +1 Bluff**</td>
    		</tr>
    		<tr decoration="underline">
    			<td width="25%">Adult 16-34</td>
    		        <td>Normal</td>
    			<td>Normal</td>
    		</tr>
    		<tr>
    			<td width="25%">Middle Age 35-52</td>
    			<td>-1 Str, -1 Dex, -1 Con, +1 Int, +1 Wis, +1 Cha</td>
    			<td>None</td>
    		</tr>
    		<tr>
    			<td width="25%">Old Age 53-69</td>
    			<td>-3 Str, -3 Dex, -3 Con, +2 Int, +2 Wis, +2 Cha</td>
    			<td>None</td>
    		</tr>
    		<tr decoration="underline">
    			<td width="25%">Venerable 70+</td>
    			<td>-6 Str, -6 Dex, -6 Con, +3 Int, +3 Wis, +3 Cha</td>
    			<td>None</td>
    		</tr>
    		<tr>
    			<td colspan="3">
    				<i>* The Skill Adjustments are bonuses to Skill checks, not an actual increase in Skill Rank.</i>
    			</td>
    		</tr>
    		<tr>
    			<td colspan="3">
    				<i>** Children can be very good at deceiving adults when the adults are distracted, inattentive, or engrossed in other matters. Like servants and pets, children are quite often treated as if they are invisible. If an adult has reason to suspect a child of mischief or has full attention upon the child, these Bluff bonuses should not be counted.</i>
    			</td>
    		</tr>
           </table>
    Any help???

    Thank you.

  3. #3

    Join Date
    Mar 2006
    Location
    Arkansas
    Posts
    7,394
    FG's tables are very limited. Only colspan works.

  4. #4
    I was afraid of it.

    Thank you for the answer.

  5. #5
    Foen's Avatar
    Join Date
    Jan 2007
    Location
    Suffolk, England
    Posts
    2,007
    The columns are of equal width, but you can create the effect of different widths by using colspan to merge them. If you want one column of standard width and the next one to be double-width, create a three column table but use colspan on the last two columns:
    Code:
    <table>
      <tr>
        <td>narrow</td>
        <td colspan='2'>wide</td>
      </tr>
    </table>
    There is also a summary of the html support in FG on the FG Wiki:

    https://oberoten.dyndns.org/fgwiki/i...Formatted_Text

    Hope that helps

    Foen

  6. #6
    Ahh formattedtext...how I love/loathe thee..

  7. #7

    Join Date
    Mar 2006
    Location
    Arkansas
    Posts
    7,394
    Quote Originally Posted by Tenian
    Ahh formattedtext...how I love/loathe thee..
    Quoted for Truth! I can't think of something I do with FG that I love/loathe more than tables.

  8. #8
    Quote Originally Posted by Foen
    The columns are of equal width, but you can create the effect of different widths by using colspan to merge them. If you want one column of standard width and the next one to be double-width, create a three column table but use colspan on the last two columns:
    Code:
    <table>
      <tr>
        <td>narrow</td>
        <td colspan='2'>wide</td>
      </tr>
    </table>
    There is also a summary of the html support in FG on the FG Wiki:

    https://oberoten.dyndns.org/fgwiki/i...Formatted_Text

    Hope that helps

    Foen
    Quite smart. Thanks a lot.

    ----------------------------------------------------------------
    An elegant weapon for a more civilized time

  9. #9
    Doswelk's Avatar
    Join Date
    Jul 2005
    Location
    Surrey, UK
    Posts
    2,679
    Quote Originally Posted by Griogre
    Quoted for Truth! I can't think of something I do with FG that I love/loathe more than tables.
    I have to admit these days I do all my tables in a WYSIWYG HTML editor and then using find and replace to strip out the bit that FGII ignores...
    My players just defeated an army, had a dogfight with aliens, machine-gunned the zombies, stormed the tower, became Legendary and died heroically

    Yours are still on combat round 6

    Get Savage
    Ultimate License Holder.
    First GM to post a game for the original FG Con!

  10. #10

    Join Date
    Mar 2006
    Location
    Arkansas
    Posts
    7,394
    What editor do you use out of curiosity?

Thread Information

Users Browsing this Thread

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

Bookmarks

Posting Permissions

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

Log in

Log in