diff --git a/admin-dev/themes/default/template/helpers/form/form.tpl b/admin-dev/themes/default/template/helpers/form/form.tpl
index db40d372d..9ed66afbd 100644
--- a/admin-dev/themes/default/template/helpers/form/form.tpl
+++ b/admin-dev/themes/default/template/helpers/form/form.tpl
@@ -76,7 +76,7 @@
{/block}
{block name="field"}
-
+
{block name="input"}
{if $input.type == 'text' || $input.type == 'tags'}
{if isset($input.lang) AND $input.lang}
diff --git a/controllers/admin/AdminAttributesGroupsController.php b/controllers/admin/AdminAttributesGroupsController.php
index 91f85a521..bf13c1040 100644
--- a/controllers/admin/AdminAttributesGroupsController.php
+++ b/controllers/admin/AdminAttributesGroupsController.php
@@ -185,6 +185,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
'name' => 'name',
'lang' => true,
'required' => true,
+ 'col' => '4',
'hint' => $this->l('Invalid characters:').' <>;=#{}'
),
array(
@@ -193,6 +194,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
'name' => 'public_name',
'lang' => true,
'required' => true,
+ 'col' => '4',
'hint' => $this->l('Group name displayed to the customer').' '.$this->l('Invalid characters:').' <>;=#{}'
),
array(
@@ -205,6 +207,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
'id' => 'id',
'name' => 'name'
),
+ 'col' => '2',
'hint' => $this->l('Choose the type of the attribute')
)
)
diff --git a/controllers/admin/AdminCategoriesController.php b/controllers/admin/AdminCategoriesController.php
index a31a674a0..a900c25aa 100644
--- a/controllers/admin/AdminCategoriesController.php
+++ b/controllers/admin/AdminCategoriesController.php
@@ -402,6 +402,7 @@ class AdminCategoriesControllerCore extends AdminController
'lang' => true,
'required' => true,
'class' => 'copy2friendlyUrl',
+ 'col' => '4',
'hint' => $this->l('Invalid characters:').' <>;=#{}',
),
array(
@@ -446,6 +447,7 @@ class AdminCategoriesControllerCore extends AdminController
'label' => $this->l('Image:'),
'name' => 'image',
'display_image' => true,
+ 'col' => '4',
'hint' => $this->l('Upload a category logo from your computer.')
),
array(
@@ -453,6 +455,7 @@ class AdminCategoriesControllerCore extends AdminController
'label' => $this->l('Meta title:'),
'name' => 'meta_title',
'lang' => true,
+ 'col' => '4',
'hint' => $this->l('Forbidden characters:').' <>;=#{}'
),
array(
@@ -460,6 +463,7 @@ class AdminCategoriesControllerCore extends AdminController
'label' => $this->l('Meta description:'),
'name' => 'meta_description',
'lang' => true,
+ 'col' => '6',
'hint' => $this->l('Forbidden characters:').' <>;=#{}'
),
array(
@@ -467,6 +471,7 @@ class AdminCategoriesControllerCore extends AdminController
'label' => $this->l('Meta keywords:'),
'name' => 'meta_keywords',
'lang' => true,
+ 'col' => '6',
'hint' => $this->l('To add "tags," click in the field, write something, and then press "Enter."').' '.$this->l('Forbidden characters:').' <>;=#{}'
),
array(
@@ -475,6 +480,7 @@ class AdminCategoriesControllerCore extends AdminController
'name' => 'link_rewrite',
'lang' => true,
'required' => true,
+ 'col' => '4',
'hint' => $this->l('Only letters and the minus (-) character are allowed.')
),
array(
@@ -486,6 +492,7 @@ class AdminCategoriesControllerCore extends AdminController
'unidentified' => $unidentified_group_information,
'guest' => $guest_group_information,
'customer' => $default_group_information,
+ 'col' => '6',
'hint' => $this->l('Mark all of the customer groups you;d like to have access to this category.')
)
),