Hi folks, continuing with site work I'm wondering where to find the icons that invite users to click on the thumbnails. We'd like to delete them from the thumbnails displays.
Been looking through the .php files and not finding them.
Thanks,
Bart
Hi folks, continuing with site work I'm wondering where to find the icons that invite users to click on the thumbnails. We'd like to delete them from the thumbnails displays.
Been looking through the .php files and not finding them.
Thanks,
Bart
what do you mean by "invite users to click on the thumbnails"?
so do you want to remove the thumbnail and show full width or just remove the magnifying glass icon?
I would interpret your comment as the latter...
so you can replace the image itself (in your sp theme) with something else or empty image (kind of hacky)... or just use css to not show it... something like
#spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent .sfmouseleft, #spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent .sfmouseright, #spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent .sfmouseother { display: none; }
thanks for the quick replies. I'm trying to remove the magnifying glass icons.
So I'd change the existing code
#spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent .sfmouseright {
float: right;
margin-right: -39px;
}
#spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent .sfmouseleft {
float: left;
margin-left: -39px;
}
#spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent .sfmouseother {
margin: 0 0 0 -34px;
padding: 20px 0;
}
to what you posted above?
not change, but add the:
display:none;
to each...
ok, thank you, that worked perfectly.
Bart