删除页脚 Prestashop 上的 h4 标签

Delete h4 tag on footer Prestashop

我是新手,我想删除一个 h4 标签并用 PrestaShop 页脚上的 div 标签替换它。 Prestashop 版本:1.6.20

这是HTML代码

 <h4>{l s='Information' mod='blockcms'}</h4>

我这样做:

<div class="footer_h4">{l s='Information' mod='blockcms'}</div>

这是CSS代码/如何插入class"footer_h4"?

.footer-container #footer h4 {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #222;
  margin: 0 0 23px 0;
  cursor: pointer; }
  @media (max-width: 767px) {
    .footer-container #footer h4 {
      position: relative;
      margin-bottom: 0;
      padding-bottom: 13px; }
      .footer-container #footer h4:after {
        display: block;
        content: "\f055";
        font-family: "FontAwesome";
        position: absolute;
        right: 0;
        top: 1px; }
      .footer-container #footer h4.active:after {
        content: "\f056"; } }
  .footer-container #footer h4 a {
    font-weight: 400;
    font-size: 22px;
    line-height: 22px;
    color: #222;
  }

@media (min-width: 767px) {
  .footer-container #footer h4 a:before,
  .footer-container #footer #block_contact_infos h4 {display: none;}
}

谢谢!!

您是否学习过基本的 CSS 选择器语法?这几乎是最基本的。

.footer-container .footer_h4 {

如果您想保留 h4 标签的当前样式,请使用列表格式添加第二个选择器:

.footer-container #footer h4, 
.footer-container .footer_h4 {

好的,这个呢?原理一样吗?

.footer-container #footer h4:after,
.footer-container #footer_h4 {