AbanteCart Community

AbanteCart Development => New Features Discussion => Topic started by: thedarksyde on December 29, 2014, 11:51:56 AM

Title: Product Name Field Box Wider
Post by: thedarksyde on December 29, 2014, 11:51:56 AM
There is a lot of room on that field column and the box is quite small, widening this box would be good.   

Title: Re: Product Name Field Box Wider
Post by: abantecart on December 30, 2014, 04:10:33 PM
On product edit page? I think it is possible
Title: Re: Product Name Field Box Wider
Post by: thedarksyde on December 31, 2014, 09:26:37 AM
On product lists page. 

(http://i.imgur.com/Yp4QbaF.jpg)
Title: Re: Product Name Field Box Wider
Post by: abantecart on January 04, 2015, 01:56:09 PM
Width is set in the controller:
admin/controller/pages/catalog/product.php

See code:

$grid_settings['colModel'] = array(
array(
'name' => 'image',
'index' => 'image',
                'align' => 'center',
'width' => 65,
'sortable' => false,
'search' => false,
),
array(
'name' => 'name',
'index' => 'name',
                'align' => 'center',
'width' => 200,
),