Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jorge Silva-Jetter

    (@jorgesilva-1)

    datiswous, what’s the problem?

    You have some CSS that you want to overwrite? That means you probably have to make your css rule more specific so that it overwrites the plugin css rule, for example:

    Instead of
    `
    .gallery_container_jsj-gallery-slideshow .gallery-pager li {
    display: none;
    }
    `

    Write something like:
    `
    html body .gallery_container_jsj-gallery-slideshow .gallery-pager li {
    display: none;
    }

    `
    or even better

    `
    html body .CLASS_OF_SOME_CONTAINER .gallery_container_jsj-gallery-slideshow .gallery-pager li {
    display: none;
    }

    `
    In css, more specific rules overwrite less specific rules.

    Thread Starter datiswous

    (@datiswous)

    Ah, Thanks.

    This did the trick:

    .post .gallery_container_jsj-gallery-slideshow .gallery-pager li {
    display: none;
    }

    But yes, I might specify it further if I want it still shown on specific places.

    Plugin Author Jorge Silva-Jetter

    (@jorgesilva-1)

    Excellent!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘not able to remove showing thumbs in website theme’ is closed to new replies.