Html 删除页脚Prestashop上的h4标记

Html 删除页脚Prestashop上的h4标记,html,css,prestashop,prestashop-1.6,Html,Css,Prestashop,Prestashop 1.6,我是新手,我想删除一个h4标记,并用PrestaShop页脚上的div标记替换它。Prestashop版本:1.6.20 这是HTML代码 <h4>{l s='Information' mod='blockcms'}</h4> 谢谢 您学习过基本的CSS选择器语法吗?这几乎是痛苦的基础 .footer-container .footer_h4 { 如果要保留h4标记的当前样式,请使用列表格式添加第二个选择器: .footer-container #footer h4

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

这是HTML代码

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

谢谢

您学习过基本的CSS选择器语法吗?这几乎是痛苦的基础

.footer-container .footer_h4 {
如果要保留h4标记的当前样式,请使用列表格式添加第二个选择器:

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

好的,这个呢?这是相同的原则吗

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