magento Modern - 在 TAB 中显示属性

发布于 2024-10-16 04:49:12 字数 291 浏览 2 评论 0原文

如果您转到此处:

http://pro-tools-training.com/new-magento/index.php/video-1/youtube.html

并单击“BUZZ/INFO”选项卡,您会看到以下文本:

BUZZ

为什么会出现属性名称以及为什么它会将我的文本撞到中心???

怎么修??我只想显示我在属性文本框中放置的任何内容,而不是名称,也不是居中对齐。

If you go here:

http://pro-tools-training.com/new-magento/index.php/video-1/youtube.html

and click "BUZZ/INFO" tab, you see the following text:

BUZZ

Why does the attribute name appear and why does it bump my text to the center????

How to fix?? I just want to show whatever I place in the attribute text box, not the name and not center justified.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

银河中√捞星星 2024-10-23 04:49:12

如果您使用 Firebug 仔细检查该页面,您会发现在“TABLE”之一中“ HTML 标记(其“id”值为“product-attribute-specs-table”),第一行包含如下所示的列:-

<th class="label">BUZZ</th>

现在是第二行列是您的文本,因此似乎第一列默认来自 Magento 的某个地方,或者已在不知不觉中插入到“PHTML”模板页面中。因此,您需要做的就是从正确的模板页面中删除上述列(如果您能够找到该模板页面),否则您将需要处理一些 CSS。

如果您需要做一些 CSS 工作,那么代码将有点像下面这样:-

div#product_tabs_additional_contents table#product-attribute-specs-table th.label {display: none;}
div#product_tabs_additional_contents table#product-attribute-specs-table td {padding-left:8px;}

上面的代码对您有用,但是您需要将此 CSS 放入您正在使用的正确主题界面/名称文件夹中的 CSS 文件中。

希望有帮助。

If you check the page minutely using Firebug, you will find that in one of the "TABLE" HTML tag (whose "id" value is "product-attribute-specs-table"), the first row contains a column which is given below:-

<th class="label">BUZZ</th>

Now the second column is your text, so it seems that the first column is either coming somewhere from Magento by default, or has been inserted in the "PHTML" template page unknowingly. So what you need to do is to remove the above-mentioned column from that proper template page (if you are able to find that one), or you will need to work on some CSS.

If you need to do some CSS work, then the code will be somewhat like below:-

div#product_tabs_additional_contents table#product-attribute-specs-table th.label {display: none;}
div#product_tabs_additional_contents table#product-attribute-specs-table td {padding-left:8px;}

The above will work for you, but you need to put this CSS in a CSS file in the proper theme interface/name folder, which you are using.

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文