• Hi,
    I’m struggling to adapt the Gmedia PhotoBlog Lightbox settings:
    (1) I would like to be able to select what information will show in the Info.
    (2) Also, I would like to be able to edit the Share button (e.g. it mentions Google+ that does not exist anymore, and I don’t want to use the Pinterest and Twitter options).
    (3) Last question: is there an option not to show the title of the picture in Lightbox?
    Thanks!
    Jaap

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Rattus

    (@pasyuk)

    Hello,

    (1) There are settings to hide some elements from Lightbox image Info box.
    (2) Custom CSS:

    .gmItemShareButtonWrap[type="pinterest"],
    .gmItemShareButtonWrap[type="google"] {
        display: none !important;
    }

    (3) Custom CSS:

    .gmInfoBox1 .gmedia_PhotoBlog_ColectionSliderItemTitle:first-child {
        display: none;
    }
    Thread Starter jpdgnl

    (@jpdgnl)

    Hi Rattus

    Thank you so much for your prompt response!
    ad (1): I don’t see any options to configure the Lightbox Image Info box… When I go to PhotoBlog > Lightbox settings, I see the option to include or not include the Info button, but not to choose what to include in that box. Or maybe I am overlooking something?
    ad (2) and (3): I am not very familiar with CSS. I tried to copy and paste both custum CSS into the Custom CSS Box in the Advanced Settings section of PhotoBlog Preset. But it did not make any difference. So probably I did it the wrong way…?

    Jaap

    Thread Starter jpdgnl

    (@jpdgnl)

    Today a friend of mine came up with the following code:

    .gmItemShareButtonWrap[type=google] {
    display: none !important;
    }

    .gmItemShareButtonWrap[type=pinterest] {
    display: none !important;
    }

    .gmItemShareButtonWrap[type=twitter] {
    display: none !important;
    }

    .gmedia_PhotoBlog_ItemInfoBar .gmDescriptionWrap .gmItemTitle {
    color: #FFF !important;
    }

    .gmedia_PhotoBlog_ItemShare .gmDescriptionWrap .gmItemDescription{
    color: #FFF !important;
    }

    ..gmedia_PhotoBlog_ColectionSliderItemTitle {
    display:none !important;
    }

    This worked!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘GMEDIA PhotoBlog Lightbox settings options’ is closed to new replies.