How To Remove Collection Title In Shopify
admin > ... > 编辑代码 > base.css > 添加:
1 2 3 4
| h1.collection-hero__title { display: none; }
|
remove the buy it now button from my product page
admin > ... > 编辑代码 > assets > theme.css > 添加:
1 2 3
| .shopify-payment-button { display: none !important; }
|
多列 block 标题居中
theme.liquid
1 2 3 4 5 6 7 8
| <style> .multicolumn [class^='title'] { align-items: center !important; justify-content: center !important; display: flex !important; text-align: center !important; } </style>
|
隐藏页尾语言菜单
theme.liquid
1 2 3 4 5
| <style> .footer__column.footer__localization.isolate { display: none !important; } </style>
|