Forums

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

Home Forums CSS [Solved] Remove Pane from sidebar

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

    Hello all,

    On this page http://www.pixeldesigns.nl/contact i try to remove the background pane from the sidebar. Somehow i can’t find the accompanying CSS with firebug.

    Maybe somebody see the accompanying CSS?

    Thanks a lot!

    Pascal.

    #189709
    Paulie_D
    Member

    It’s not clear what ‘pane’ you mean but if you are referring to the slight grey background color around the ‘phone’

    It’s this

    
    .bg-color-sidebar {
    background-color: #f5f5f5;
    }
    

    Line 33 of custom.css

    #189728
    PixelPascal
    Participant

    Yes that’s the right one but i guess this is for all the sidebars. I like to remove the back of the phone. So only the sidebar on that page need to be edited.

    #189731
    Paulie_D
    Member

    Well this page has a class specific to it of page-id-69

    So

    page-id-69 .bg-color-sidebar {
    background-color: #f5f5f5;
    }
    

    Should work.

    #189742
    PixelPascal
    Participant

    Can i make it transparent? With the hexa code? I tried this:

    page-id-69 .bg-color-sidebar {
    background-color: #f5f5f5;
    opacity: 0.4;
    }

    But not result. Complete transparent is what i want with it. Something like display=none…

    #189744
    Senff
    Participant
    .page-id-69 .bg-color-sidebar {
        background-color: transparent;
    }
    
    #189745
    PixelPascal
    Participant

    Oke thanks a lot ; ))

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘CSS’ is closed to new topics and replies.