• Resolved texins5

    (@texins5)


    I’m using the single thumbnail gallery, and I’ve figured out how to remove the white border with CSS, but I can’t seem to completely remove the shadow around the thumbnail. Can you help? Development address is: https://mshomes.wwdeb.com/ . Galleries are used on first row of images you see on the page. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author bradvin

    (@bradvin)

    I had a look at your page and you had it 95% right. You just need to change the box-shadow: 0px; to box-shadow:none;

    This should do it:

    
    .foogallery-thumbnail a,
    .foogallery-thumbnail a:hover {
        border: 1px solid #7a7a7a !important;
        margin: 0px !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    Thread Starter texins5

    (@texins5)

    Aaahhh, thank you! Spaced out on that one. Appreciate your quick help!

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