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!