Forums

help with template spacing - connectivity

jollyjollyjolly 26 Apr, 2011
Hello,

Great plugin!So very versatile. I have a quick problem with the spacing at the footer of the bottom of the pages. Here is a link to the working site.
http://jerodmoore.com/mockups/stream2/index.php?option=com_chronoconnectivity&connectionname=records_main

Here is the header code I used from a prior example

<html>
<head>
  <meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
  <title></title>
</head>
<body>
<h2 style="color: rgb(0, 51, 0);">Output</h2>
<table
style="text-align: left; width: 100%;"
border="0" cellpadding="2" cellspacing="0">
  <tbody>
    <tr style="background-color: rgb(204, 204, 204)";>
      <td style="font-weight: bold; width: 3%;">ID# </td>
      <td style="font-weight: bold; width: 7%;">Date           </td>
      <td style="font-weight: bold; width: 4%;">Time  </td>
      <td style="font-weight: bold; width: 21%;">Device/Server/System</td>
      <td style="font-weight: bold; width: 15%;">Customers
affected</td>
      <td style="font-weight: bold; width: 40%;">Action</td>
      <td style="font-weight: bold; width: 10%;">Name of
implementor</td>
    </tr>
  </tbody>
</table>
</body>
</html>
<?php
$i = 0;
?>


Here is the body code I used from a prior example

<table style="text-align: left; width: 100%;" border="0"
cellpadding="2" cellspacing="0">
  <tbody>
    <tr<?php if ($i % 2) echo ' style="background-color: #EBEBEB;"';?>>
      <td style="font-weight: bold; width: 3%;">{cf_id}</td>
      <td style="font-weight: bold; width: 7%;">{co_name}</td>
      <td style="font-weight: bold; width: 4%;">{payroll_contact}</td>
      <td style="font-weight: bold; width: 21%;">{gross_payroll}</td>
      <td style="font-weight: bold; width: 15%;">{owner_name}</td>
      <td style="font-weight: bold; width: 40%;">{prop_date}</td>
      <td style="font-weight: bold; width: 10%;">{co_type}</td>
    </tr>
  </tbody>
</table>
<?php $i++ ?>
<br>


This seems to be a template issue as I also experience footer or spacing issues on the submission form itself.
http://jerodmoore.com/mockups/stream2/index.php?option=com_chronocontact&chronoformname=SBS_1

Thanks,

-J
GreyHead 27 Apr, 2011
Hi jollyjollyjolly,

I'd agree that this is a template problem - looks like you need a few more px of bottom padding/margin on the main body to counteract the negative padding on the footer.

Bob
This topic is locked and no more replies can be posted.