Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need help conforming site to look the same.


thisheart

Recommended Posts

I am trying to fix all the content to look the same.

 

What I mean is changing the content on the index, about us, help and products page to look like the contact page.

 

See how it has a box with a non-shaded border. I would like to put a box around the text in the 'about us' page.

 

As well as using this same look else where on my site.

 

Thanks for any help.

Link to my website here

Link to comment
Share on other sites

The tables are done like this:

 

 ? ? ?<tr>
? ? ? ?<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
? ? ? ? ?<tr class="infoBoxContents">
? ? ? ? ? ?<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
? ? ? ? ? ? ?<tr>

 

Those two classes in nested tables will give you that look - eg. in privacy.php change:

 

 ? ? ?<tr>
? ? ? ?<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
? ? ? ? ?<tr>
? ? ? ? ? ? ? <td class="main"><?php echo TEXT_INFORMATION; ?></td>
? ? ? ? ?</tr>
? ? ? ?</table></td>
? ? ?</tr>

 

to:

 

 ? ? ?<tr>
? ? ? ?<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
? ? ? ? ?<tr class="infoBoxContents">
? ? ? ? ? ?<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
? ? ? ? ? ? ?<tr>
? ? ? ? ? ?     <td class="main"><?php echo TEXT_INFORMATION; ?></td>
? ? ? ? ? ? ?</tr>
? ? ? ? ? ?</table></td>
? ? ? ? ?</tr>
? ? ? ?</table></td>
? ? ?</tr>

 

Matti

Link to comment
Share on other sites

The tables are done like this:

 

      <tr>
       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
         <tr class="infoBoxContents">
           <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
             <tr>

 

Those two classes in nested tables will give you that look - eg. in privacy.php change:

 

      <tr>
       <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
         <tr>
              <td class="main"><?php echo TEXT_INFORMATION; ?></td>
         </tr>
       </table></td>
     </tr>

 

to:

 

      <tr>
       <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
         <tr class="infoBoxContents">
           <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
             <tr>
                <td class="main"><?php echo TEXT_INFORMATION; ?></td>
             </tr>
           </table></td>
         </tr>
       </table></td>
     </tr>

 

Matti

 

 

Thank you :)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...