Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Remove logo pane

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #184878
    PixelPascal
    Participant

    Hello,

    On this site http://www.pixeldesigns.nl i like to remove the logo pane background, so only the logo will stay there.

    I am looking for a CSS code.

    Thank you!

    Br, Pascal

    #184880
    Paulie_D
    Member

    You mean this

    
    .logo-pane {
    background-color: #fff !important;
    }
    

    You could…but the image wouldn’t be visible as it’s black letters on a transparent background.

    #184881
    PixelPascal
    Participant

    Yes Paulie,

    When i remove this code, the logo is also gone…I looking for a solution to only have the logo on that location.

    #184884
    Paulie_D
    Member

    The logo is transparent…what color do you want behind it?

    #184885
    Senff
    Participant

    Don’t remove that code — @paulie_d was just pointing out the code that causes the background. You’ll probably just need to change it to this:

    .logo-pane {
        background-color: transparent !important;
    }
    

    This will get rid of the white background behind the logo.

    #184886
    Paulie_D
    Member
    
    .bg-color-menu, /* try removing this line too*/
    
    .primary-menu li { /* keep this one */
    background-color: #000000;
    }
    
Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘CSS’ is closed to new topics and replies.