Community @ The Turning Gate

Support community for TTG plugins and products.

NOTICE

The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.

This forum is now closed, and exists here as a read-only archive.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#1 2014-07-28 03:22:12

Ken
Member
Registered: 2013-03-16
Posts: 314
Website

Table content does not align properly

I am creating tables using MarkdownPad 2. The two right columns I right aligned the prices. In MardownPad they look right aligned, however when I copy and paste them into the Sidebar Copy (MD) in Lightroom, they do not right align in the table. Also, when I upload the pages to my web server, they do right align when viewed in the web browser. Here is an example for one row showing the html codes that MarkdownPad creates:

<tr>
    <td>20” X 30”</td>
    <td align="right">$300</td>
    <td align="right">$750</td>
</tr>

The website can be viewed at www.ioscapes.com

On the Purchase page you can see the issue.

Thanks for your help.

Offline

#2 2014-07-28 06:33:34

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Table content does not align properly

this could be because the align attribute is not supported in HTML 5
http://www.w3schools.com/tags/att_table_align.asp


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#3 2014-07-28 18:02:33

Matthew
Administrator
From: San Francisco, CA
Registered: 2012-09-24
Posts: 5,795
Website

Re: Table content does not align properly

This would be more appropriate:

<table>
<tr>
    <td>20" X 30"</td>
    <td style="text-align:right;">$300</td>
    <td style="text-align:right;">$750</td>
</tr>
</table>

Matt

The Turning Gate, http://theturninggate.net

Offline

Board footer

Powered by FluxBB