• hegersoft

    (@hegersoft)


    Hello

    I need some help with CSS again.
    I want to hide the little grey topbar on my website or make it black
    but i cant find the right element when I take a look at the source code. I dont know what I have to choose. I cant find this element in the body.

    Maby You can help me?

    I am using the Nirvana theme.

    Thank You for Your help! 🙂
    Sorry for my bad english!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • ephaemera

    (@ephaemera)

    Hi hegersoft,

    I’m seeing this code as an inline style (from your customizer, maybe?) when I inspect element:

    body {
    color: #1D1D1D;
    background-color: #1D1D1D;
    }

    The background-color seems to be creating that little gray strip along the top of your site. So in your customizer, try entering this:

    body {
    background-color: #000;
    }

    The original code for this topbar is as follows:

    #topbar {
    background-color: #FFFFFF;
    border-bottom-color: #ebebeb;
    }

    So if changing the color in the customizer doesn’t work with my first suggestion, maybe try the code below in the customizer (or your stylesheet) instead:

    #topbar {
    background-color: #000;
    }

    LMK if this helps.

    Thread Starter hegersoft

    (@hegersoft)

    Sry but it doesnt work 🙁

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Cant find this element in source code for CSS!’ is closed to new replies.