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.
You are not logged in.
Pages: 1
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
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
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>
Offline
Pages: 1