Atrributes Selection不适用于Android浏览器4.x.

时间:2016-01-15 06:45:24

标签: android css android-4.0-ice-cream-sandwich prestashop-1.6

我的属性有问题(PrestaShop 1.6)

PivotHeaderItem styles and templates

如果你点击选择尺寸(塔拉):从任何浏览器(Chromme,Firefox ...)但在Android 4.xo 5.x上它可以正常工作,但是...... 如果你点击选择尺寸:从android 4.x浏览器默认打开选项,然后立即关闭它。

我按照这些说明操作:

  1. 在您的主题文件夹中打开product.tpl并查找:

    <select name="{$groupName}" id="group_{$id_attribute_group|intval}" class="attribute_select no-print">
    
  2. 2-课后注释表单控件,如下所示:

    select#group_3.attribute_select {width: 60%!important;}
    
    select#group_1.attribute_select {width: 60%!important;}
    

    3-然后在{your_theme} / css中添加您的global.css文件添加以下内容以使其再次显示(组后的数字因网站而异,请查看您正在使用的组号属性选择器):

    inflate

    我设法起来修改product.tpl但是我不确定在第3点复制代码行的位置,以便维护属性选择样式。

    我也不知道在哪里寻找我的团体编号。我真的很感激你的帮助。

    谢谢你的时间! ; - )

1 个答案:

答案 0 :(得分:0)

如果你看your source code,你会发现:

<select name="group_3" id="group_3" class="form-control attribute_select no-print">

因此,此值的groupName ID为group_3,如示例所示。

您需要编辑此文件/themes/Calisto/css/global.css并在保存前添加此行:

select#group_3.attribute_select {width: 60%!important;}

我并不是说它可以解决您的问题,但这就是您的指示所说的。