【问题标题】:CSS not recognizing class and changing content within the headerCSS无法识别类并更改标题中的内容
【发布时间】:2021-10-03 09:24:02
【问题描述】:

Product display that I am trying to manipulate in CSS using ul, ol .row

Megamenu 的内容随着我的

    cms 标签2而改变

    ul, ol .col-3 {
       margin-top: 0rem;
       margin-bottom: 1rem;
       font-size: medium;
    }
    
    .col-3 { 
        text-align: left; 
        width: 100%; 
        position: relative; 
        vertical-align: -webkit-baseline-middle; 
        max-width: 100%; 
        display: inline-block;
        padding-bottom: 4rem;
    }
    
    .col-12 { 
        text-align: left; 
        width: 100%; 
        position: relative; 
        vertical-align: -webkit-baseline-middle; 
        max-width: 100%; 
        display: inline-block;
    }
    
    .button {
      transition: all .3s;
      margin: 5px;
      text-decoration: none;
      display: inline-block;
      background: white;
      height: 50%;
      width: 100%;
      line-height:25px;
      text-align: center;
      color:black;
      margin: auto;
    }
    .button:hover {
      box-shadow: 40px;
      border: solid; 
    }
    
    h3 {
        margin-top: 0rem;
        margin-bottom: 2rem;
        position: relative;
        max-width: 100%;
        margin-bottom: 2rem;
        font-weight: bold;
        padding-left: 1.5rem;
    }
    <div class="row">
            <div class="col-3">
                <div class="col-12">
                  <h3 class="size-25"><a href="{{config path="web/secure/base_url"}}/brands/shepherd-casters/casters/razer-series.html"><span style="color: #007dbd;">Razer</span></a></h3>  
                    <div class="col-content" style="text-align: center; padding-top: 3%; padding-bottom: 3%;">
                        <a href="https://df239c5e7e.nxcli.net/brands/shepherd-casters/casters/razer-series.html"><img src="https://casterdepot.com/media/Shepherd/RZ03TPP090SWTP05.png" alt="" width="200px;" height="250px;"></a>
                    </div>
                </div>
                <div class="col-12">
                    <div class="col-content" style="text-align: left; padding-top: 3%; padding-bottom: 3%;">
                        <ul>
                            <li>Dynamic Capacity</li>
                            <li>Bearing / Raceways</li>
                            <li>Finish</li>
                        </ul> 
                        <a href="https://df239c5e7e.nxcli.net/brands/shepherd-casters/casters/razer-series.html">
                            <button class="button 3" type="button">Read More</button>
                        </a>
                    </div>
                </div>
            </div>
    </div>

    我希望 ul, ol CSS 只响应正文内容而不是标题中的内容。它正在放大标题中的内容,因为它使用了 标签。该网站正在运行 Magento 2.4。

【问题讨论】:

    标签: html css magento


    【解决方案1】:

    尝试在定义的 ul/ol CSS 之前添加 body 类

    例子:

    BODY_CLASS ul, BODY_CLASS ol .col-3 {
       margin-top: 0rem;
       margin-bottom: 1rem;
       font-size: medium;
    }
    

    如果&lt;body&gt; 标签没有类,那么您可以使用body 代替BODY_CLASS

    【讨论】:

      【解决方案2】:

      我想通了。原来标题使用的是基本的 ul、ol 样式,所以我将类名更改为 .bullet-info。标题超出了我的风格,所以我不得不给子弹一个自定义类。

      .bullet-info {
          margin-top: 0rem;
         margin-bottom: 1rem;
         font-size: medium;
          text-align: left;
      }
      
      .product-display .col-content {
          -webkit-box-shadow: 1px 2px 6px -1px rgb(0 0 0 / 20%);
          -moz-box-shadow: 1px 2px 6px -1px rgba(0, 0, 0, 0.2);
          -ms-box-shadow: 1px 2px 6px -1px rgba(0, 0, 0, 0.2);
              box-shadow: 1px 2px 6px -1px rgb(0 0 0 / 50%);
          padding: 0 1rem 1.5rem;
          margin: 0 .5rem .5rem;
           text-align: center;
           padding-top: 3%; 
           padding-bottom: 3%;
      }
      
      .product-display .row {
          max-width: 1360px;
          margin: auto;
          margin-top: 4rem;
      }
      
      .series-text {
          margin-top: .5rem;
          margin-bottom: .5rem;
          position: relative;
          max-width: 100%;
           text-align: left;
      }
      
      .product-name {
          margin-top: 0rem;
          margin-bottom: 2rem;
          position: relative;
          max-width: 100%;
          margin-bottom: 2rem;
          font-weight: bold;
          padding-left: 1.5rem;
      }
      
      @media only screen and (max-width: 991px) {
          .series-text {
          margin-top: .5rem;
          margin-bottom: .5rem;
          position: relative;
          max-width: 100%;
          font-size: 1.5rem;
          } 
      }
      
      
      @media only screen and (max-width: 991px) {
          .product-name {
              font-size: 2.4rem;
          }
      }
      <div class="col-content">
                          <ul class="bullet-info">
                              <li>Dynamic Capacity</li>
                              <li>Bearing / Raceways</li>
                              <li>Finish</li>
                          </ul> 
                          <a href="https://df239c5e7e.nxcli.net/brands/shepherd-casters/casters/razer-series.html">
                              <button class="cd-button" type="button">Read More</button>
                          </a>
                      </div>

      【讨论】:

        猜你喜欢
        • 2016-04-14
        • 1970-01-01
        • 1970-01-01
        • 2010-11-06
        • 2017-09-05
        • 2016-12-18
        • 1970-01-01
        • 2012-07-14
        • 1970-01-01
        相关资源
        最近更新 更多