Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Assistance needed. RE: Product table width


AZWheeler

Recommended Posts

Posted

Hello,

I am asking to see if anyone knows how I can solve this issue I am having with the width (length) of my product listings. I have tried the contribution http://www.oscommerce.info/docs/english/e_...ng_columns.html and it works great; however, I can only adjust the length of the text as far as the actual field will let me. I am wanting to adjust the product rows to extend all the way to the margin. Here is a screenshot below.

 

Screenshot1.jpg

 

I have also gone into the database and increased the VARCHAR from 64 to 125 for both instances of product_name and that did not help either. I also tried changing the box width in application_top which also did not work.

 

The only thing I have found that changed the field at all was changing this segment of code in boxes.php:

 

  class tableBox {
var $table_border = '0';
var $table_width = '100%';
var $table_cellspacing = '0';
var $table_cellpadding = '0';
var $table_parameters = ' align="center" class="box"';
var $table_row_parameters = '';
var $table_data_parameters = '';

 

TO:

 

  class tableBox {
var $table_border = '0';
var $table_width = '125%';
var $table_cellspacing = '0';
var $table_cellpadding = '0';
var $table_parameters = ' align="center" class="box"';
var $table_row_parameters = '';
var $table_data_parameters = '';

 

This is the result of the above change:

 

Screenshot2.jpg

 

It throws my infobox alignment out of wack.

 

Does anyone know how to extend the product rows all the way to the margin the correct way?

 

I thank you all in advance for your help.

 

Regards,

 

Chad

Archived

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

×
×
  • Create New...