ditolas Posted June 9, 2014 Share Posted June 9, 2014 (edited) Hola a todos, estoy intentado modificar el tamaño del select del producto pero no encuentro el span en donde aparece el tamaño del select en product.tpl. Debería de aparecer aquí : <div class="attribute_list"> {if ($group.group_type == 'select')} <select name="{$groupName}" id="group_{$id_attribute_group|intval}" class="form-control attribute_select no-print"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'html':'UTF-8'}">{$group_attribute|escape:'html':'UTF-8'}</option> {/foreach} </select> Alguien sabe donde se modifica? Hola a todos, estoy intentado modificar el tamaño del select del producto pero no encuentro el span en donde aparece el tamaño del select en product.tpl. Debería de aparecer aquí : <div class="attribute_list"> {if ($group.group_type == 'select')} <select name="{$groupName}" id="group_{$id_attribute_group|intval}" class="form-control attribute_select no-print"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'html':'UTF-8'}">{$group_attribute|escape:'html':'UTF-8'}</option> {/foreach} </select> Alguien sabe donde se modifica? Edited June 9, 2014 by ditolas (see edit history) Link to comment Share on other sites More sharing options...
jesa Posted June 9, 2014 Share Posted June 9, 2014 Si quieres cambiar el tamaño del select tienes que modificar el tamaño de la etiqueta select no la del span Link to comment Share on other sites More sharing options...
ditolas Posted June 9, 2014 Author Share Posted June 9, 2014 (edited) Si , eso es lo que yo creía ,pero pruebo a modificar el tamaño del select y no hace nada ,en cambio modifico el del span y me cambia el tamaño .Asi que el que hay que modificar es el span pero no lo encuentro por ningún sitio .Sabrías decirme donde lo puedo localizar Edited June 9, 2014 by ditolas (see edit history) Link to comment Share on other sites More sharing options...
ditolas Posted June 9, 2014 Author Share Posted June 9, 2014 (edited) Me pasa también con los select de los filtros de la navegación por facetas. Edited June 9, 2014 by ditolas (see edit history) Link to comment Share on other sites More sharing options...
ditolas Posted June 9, 2014 Author Share Posted June 9, 2014 En la pagina del producto hay que modificar en el product.css #attributes .attribute_list .form-control la propiedad max-width Link to comment Share on other sites More sharing options...
Recommended Posts