Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Theodophilus

    (@theodophilus)

    Also my WP version is actually 3.8.5 not 3.8.2 but I didn’t see the .5 option.

    Plugin Author AlanP57

    (@alanp57)

    Hi Theodophilus,

    Are you saying that you have checkboxes appearing on the page with the gallery in it on the front end of your site?. If so, can you give us the URL of the page.

    Thanks

    Thread Starter Theodophilus

    (@theodophilus)

    Hello Alan, here is the page:
    http://petrocaribejm.org/photo-gallery

    Plugin Author AlanP57

    (@alanp57)

    Thank you for the link.

    These are not html checkboxes. There are FontAwsome icons placed here by your stylesheet, see line 448 of style.css

    ul:not([class]) > li:before {
        color: #666;
        content: “”;
        font-family: “FontAwesome”;
        font-size: 14px;
        margin-left: -20px;
        position: absolute;
    }

    You will need to add a rule to override ‘ul:not([class]) > li:before’. Perhaps something like this:

    .mg-image-tiles ul > li:before {
    content: none;
    }

    Thread Starter Theodophilus

    (@theodophilus)

    Thanks Alan! Worked perfectly.

    Plugin Author maxfoundry

    (@maxfoundry)

    Theo,

    Glad everything worked out well. Thank you for marking this as Resolved. Please consider giving MaxGalleria a rating.

    Best,

    Bob

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Checkboxes beside each image’ is closed to new replies.