Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of Hugo

How to disable the blank space of the admin bar on header ? (3 posts)

Started 8 months, 3 weeks ago by: evo252

  • Profile picture of evo252 evo252 said 8 months, 3 weeks ago:

    Hello

    I don’t suceed to remove this white space due to admin bar, which prevents me to add social links on the header of my website.

    My CSS has this :

    body {
    background: #ffffff url(../images/backgroundshadow.png) repeat-y top center;
    font-family: tahoma,arial,verdana,sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #666666;
    position: relative;
    z-index:-9999;
    margin: 0 auto;
    padding-top: 0 !important; /* Remove the top padding space for the admin bar in this theme */
    }

    And the wite space remains… is there a way to remove it ?

  • Profile picture of @mercime @mercime said 8 months, 3 weeks ago:

    WP/BP versions? What theme are you using? Better yet, site URL?

  • Profile picture of evo252 evo252 said 8 months, 2 weeks ago:

    I fixed it by changing CSS file, for those who have the same problem, maybe this will run on your template:

    #wp-admin-bar {
    height:0 !important;
    }