Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.77 KB | None | 0 0
  1. // Add this data to the style.css file
  2.  
  3.  
  4. table.data {
  5.     font-family: Arial, Helvetica, sans-serif;
  6.     font-size: 0.9em;
  7.     width: 95%;
  8.     margin-top: 0px;
  9.     margin-right: auto;
  10.     margin-bottom: 30px;
  11.     margin-left: auto;
  12.     background: #e1d8b9;
  13.     border: 1px solid #333;
  14.     border-collapse: collapse;
  15. }
  16. table.data td {
  17.     font-size: 0.8em;
  18.     padding-top: 0px;
  19.     padding-right: 10px;
  20.     padding-bottom: 0px;
  21.     padding-left: 10px;
  22.     border: 1px solid #333;
  23.     text-align: center;
  24. }
  25. #session, #price, #total {
  26.     background-color: #fff;
  27. }
  28. table.data th {
  29.     font-size: 1em;
  30.     line-height: 2.6em;
  31.     font-weight: normal;
  32.     text-align: left;
  33.     padding-top: 0px;
  34.     padding-right: 10px;
  35.     padding-bottom: 0px;
  36.     padding-left: 10px;
  37.     color: #fff;
  38.     background: #555;
  39.     border-bottom: 1px solid #000;
  40. }
  41. table.data thead {
  42.     background-image: url(../../../wamp/www/explore_ca/thead_back.gif);
  43.     background-repeat: repeat-x;
  44.     height: 40px;
  45. }
  46. table.data thead th {
  47.     color: #000;
  48.     background: none;
  49.     text-align: left;
  50.     border: 1px solid #333;
  51. }
  52. table.data caption {
  53.     font-size: 1.2em;
  54.     font-weight: bold;
  55.     color: #51341a;
  56.     text-align: left;
  57.     margin: 0px;
  58.     padding-bottom: 10px;
  59. }
  60.  
  61.  
  62.  
  63.  
  64. // add this into the WP page
  65.  
  66.  
  67. <table width="400" border="0" cellpadding="0" cellspacing="0" class="data"  summary="This page shows the full price list for all the therapies offered by Freedom Therapy">
  68. <caption> Freedom Therapy Price List</caption>
  69. <colgroup>
  70. <col id="therapy" />
  71. <col id="session" />
  72. <col id="number" />
  73. <col id="price" />
  74. <col id="discount" />
  75. <col id="total" />
  76. </colgroup>  
  77.  <thead>
  78.  <tr>
  79.     <th scope="col">Therapy</th>
  80.     <th scope="col">Session</th>
  81.     <th scope="col">Number</th>
  82.     <th scope="col">Price</th>
  83.     <th scope="col">Summer Discount</th>
  84.     <th scope="col">Total</th>
  85.   </tr>
  86. </thead>
  87.   <tbody>
  88. <tr>
  89.     <th scope="row">Hypnotherapy / NLP / EFT/ Life Coaching</th>
  90.     <td>90 min</td>
  91.     <td>1</td>
  92.     <td>£65.00</td>
  93.     <td></td>
  94.     <td>£65.00</td>
  95.   </tr>
  96.   <tr>
  97.     <th scope="row">Hypnotherapy / NLP / EFT/ Life Coaching</th>
  98.     <td>60 min</td>
  99.     <td>1</td>
  100.     <td>£50.00</td>
  101.     <td></td>
  102.     <td>£50.00</td>
  103.   </tr>
  104.   <tr>
  105.     <th scope="row">Hypnotherapy / NLP / EFT/ Life Coaching</th>
  106.     <td>60 min</td>
  107.     <td>4</td>
  108.     <td>£200.00</td>
  109.     <td>£50.00</td>
  110.     <td>£150.00</td>
  111.   </tr>
  112.   <tr>
  113.     <th scope="row">Hypnotherapy / NLP / EFT/ Life Coaching</th>
  114.     <td>30 min *</td>
  115.     <td>1</td>
  116.     <td>£25.00</td>
  117.     <td></td>
  118.     <td>£25.00</td>
  119.   </tr>
  120.   <tr>
  121.     <th scope="row">Smoking Cessation</th>
  122.     <td>90 - 60min</td>
  123.     <td>4</td>
  124.     <td>£195.00</td>
  125.     <td>£45.00</td>
  126.     <td>£150.00</td>
  127.   </tr>
  128.   <tr>
  129.     <th scope="row">Stress / Relax Management </th>
  130.     <td>90 - 60min</td>
  131.     <td>4</td>
  132.     <td>£200.00</td>
  133.     <td>£50.00</td>
  134.     <td>£150.00</td>
  135.   </tr>
  136.   <tr>
  137.     <th scope="row">Weight Loss</th>
  138.     <td>60min</td>
  139.     <td>4</td>
  140.     <td>£200.00</td>
  141.     <td>£50.00</td>
  142.     <td>£150.00</td>
  143.   </tr>
  144.   <tr>
  145.     <th scope="row">Reiki </th>
  146.     <td>60min</td>
  147.     <td>1</td>
  148.     <td>£30.00</td>
  149.     <td></td>
  150.     <td>£30.00</td>
  151.   </tr>
  152.   <tr>
  153.     <th scope="row">Reiki </th>
  154.     <td>90 - 60min</td>
  155.     <td>4</td>
  156.     <td>£120.00</td>
  157.     <td>£20.00</td>
  158.     <td>£100.00</td>
  159.   </tr>
  160.   <tr>
  161.     <th scope="row">Reiki </th>
  162.     <td>30 min</td>
  163.     <td>1</td>
  164.     <td>£15.00</td>
  165.     <td></td>
  166.     <td>£15.00</td>
  167.   </tr>
  168.   <tr>
  169.     <th scope="row">Reiki </th>
  170.     <td>30 min</td>
  171.     <td>4</td>
  172.     <td>£60.00</td>
  173.     <td>£10.00</td>
  174.     <td>£50.00</td>
  175.   </tr>
  176.   <tr>
  177.     <th scope="row">Workshops *</th>
  178.     <td>2 hrs</td>
  179.     <td>1</td>
  180.     <td>£5.00</td>
  181.     <td></td>
  182.     <td>£5.00</td>
  183.   </tr>
  184. </tbody>
  185. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement