我已经按照 Google 搜索中出现的每个教程向 Magento CMS 页面添加简单的 CSS 样式。
我只想添加以下 CSS
.list-checkmark{
list-style-image: url("../images/Check-Mark-2.png");
margin-left: 3em;
}
到我的页面http://demo.txsystems.com/index.php/integration-service 这是一个 CMS 页面,我添加了以下内容
<reference name="head">
<action method="addItem">
<type>skin_css</type><script>MyCss.css</script>
</action>
</reference>
到 Magento admin 中此页面的布局更新 XML。
我已将文件 myCss.css 添加到 /var/www/html/skin/frontend/default/hellogamez/css
请有人帮我理解,我还缺少什么,所述图像位于相应的图像文件夹中。
当然,在 CMS 页面中,这里是我尝试应用格式的 UL 列表,我在 Magento 1.7
<ul class="list-checkmark">
<li>PCs (laptop, desktop, tablet)</li>
<li>Portable and Desktop Printing Systems</li>
<li>First Responder Devices</li>
<li>Vending Machines</li>
<li>Handhelds</li>
<li>Medical Devices and Testing Equipment</li>
<li>Multifunctional Printers</li>
<li>Industrial Control Systems</li>
<li>Storage and Locker Systems</li>
<li>Event Ticketing</li>
<li>Asset Tracking</li>
<li>Commercial Ovens</li>
</ul>
谢谢