|
Post by Pebble with a long user name. on May 23, 2013 20:06:06 GMT
Code updates here:
|
|
|
Post by Pebble with a long user name. on May 24, 2013 18:13:32 GMT
|
|
|
Post by Pebble with a long user name. on Jun 4, 2013 17:53:47 GMT
After a few questions about aligning contents of the tables I thought it easier to put a HTML & CSS example here:
Table 1 content For the table1 content, add this to your content in the plugin:
<table id="mycontent1"> <tr> <th class="titlecss">Title 1</th> </tr> <tr> <td> Here is the text content that you want to add. Here is the text content that you want to add. Here is the text content that you want to add. Here is the text content that you want to add. Here is the text content that you want to add. Here is the text content that you want to add. </td> </tr> <th class="titlecss">Title 2</th> <tr> <td> And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. </td> </tr> <th class="titlecss">Title 3</th> <tr> <td> And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. And here is some more text content. </td> </tr> </table> And then add this to the bottom of your CSS style sheet:
#mycontent1{ color: #000000; width:300px; border: 1px solid black; float:right; } #mycontent1 td{ border: 1px solid blue; text-align:left; } .titlecss{ background-color: #1627ab; color: #FFFFFF; text-align:center; }
|
|