我在Shopware 5中创建了新的Shopping World,并在下一个HTML和CSS中插入了Code元素:



<!DOCTYPE html>
<html>
<head>

    <style>
         ul {
           list-style: none;
           margin: 0 auto;
           width: 100%;
           position: fixed;
           top: 107px;
           left: 497px;
       }
       ul li {
           float: left;
           padding-bottom: 0;
       }
       ul a {
           display: block;
           text-align: center;
           color: black;
           text-decoration: none;
           font-family: 'couture', serif;
           padding: 6px 23px;
           background: white;
           font-size: 12pt;
       }
        ul li#active a {
            border-bottom: 4px solid black;
            color: black;
            padding-bottom: 23px;
        }
    </style>

</head>
<body>
    <ul>
        <li id="active"><a href="">Mens</a></li>
        <li><a href="">Women</a></li>
    </ul>
</body>
</html>





我认为问题出在Shopware 5中,但是我是Shopware的新手,我非常困惑。这段代码只是破坏了我的购物世界,我不知道为什么?这是带底线的非常简单的小型导航菜单。我需要一个知道Shopware发生了什么的人。
谢谢高级

最佳答案

您不应该将html / css放入购物世界。
您应该创建自定义情感元素,请查看以下指南:
https://developers.shopware.com/developers-guide/custom-shopping-world-elements/

关于html - 带有HTML和CSS的代码元素破坏了Shopware中的购物世界,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49916062/

10-09 21:40