样式css动态生成?

时间:2015-02-12 19:33:20

标签: php html css wordpress

我有这个网站:

http://avocat.dac-proiect.ro/wp

在此网站上,页脚显示为黑人,希望删除

要解决这个问题,我需要更改这行代码的高度

<div style="position: relative; height: 126px;" id="footer-sidebar" class="footer-sidebar widget-area masonry" role="complementary"

我的问题是我找不到要编辑的文件......我到处搜索

我们发现了同一时间,并在footer.php中告诉了这段代码...

这是代码footer.php

<div id="supplementary">
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
        <?php dynamic_sidebar( 'sidebar-3' ); ?>
</div><!-- #footer-sidebar -->

2825行找到了CSS代码但无法改变高度:

  .site-footer {
    background-color: #000;
    font-size: 12px;
    position: fixed;
    z-index: 3;
bottom:0px;
width:100%;
}

目前他们都是可用的信息......请你能帮我解决这个问题吗?

提前致谢!

2 个答案:

答案 0 :(得分:0)

如果您只想摆脱黑色部分,只需更改行

即可
background-color: #000;

background-color: transparent;

答案 1 :(得分:0)

您可以使用快速脚本执行此操作:

<script>
document.addEventListener('DOMContentLoaded', updateAttribute);

function updateAttribute() {
  document.getElementById('footer-sidebar').setAttribute('style','position:relative;');
}
</script>

这将删除动态添加的height:126px;部分。

OR

在CSS代码中设置高度:

.site-footer {
  background-color: #000;
  font-size: 12px;
  position: fixed;
  z-index: 3;
  bottom:0px;
  width:100%;
  height:0 !important;
}