• Resolved ourawomba

    (@ourawomba)


    Hi,

    We are actually in the process of refreshing our basketball club website.

    We are using the Nextgen gallery plugin to display the teams by seasons.

    I am trying to remove the border around the different galleries thumbnail using the following CSS code (https://testbbc.cossonaybasket.ch/photos/equipes/):

    .ngg-gallery-thumbnail {
    border: none !important;
    }

    It is not working so I guess I am doing something wrong.
    Can you help me please ?

    Thanks
    Pascal

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Imagely

    (@imagely)

    Hi @ourawomba,

    The CSS borderparameter doesn’t support nonevalue so you’d need to either use border: 0 !important; or border-style: none;

    • This reply was modified 3 years ago by Imagely.
    Thread Starter ourawomba

    (@ourawomba)

    Thanks for you answer but unfortunately I still have this bad looking border around my thumbnails …

    • This reply was modified 3 years ago by ourawomba.
    Plugin Contributor Imagely

    (@imagely)

    Guessing that’s because of using a wrong selector. Try using:

    .ngg-album-compactbox,
    .ngg-album-compactbox:before,
    .ngg-album-compactbox:after {
        border: 0 !important;
    }
    Thread Starter ourawomba

    (@ourawomba)

    Thats perfect !

    Thanks for your support.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove’ is closed to new replies.