Support Forum

Removing the thumbnail icons

BC bart cocchiola
bart cocchiola
Member

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

7 Answers

New Answer

MP Mr Papa
Mr Papa
Member

what do you mean by “invite users to click on the thumbnails”?

MP Mr Papa
Mr Papa
Member

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;
}
BC bart cocchiola
bart cocchiola
Member

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?

MP Mr Papa
Mr Papa
Member

not change, but add the:

display:none;

to each…