Support Forum

Removing the thumbnail icons

1
Bart C.
New Jersey, USA
Member
Free Members
Oct 5, 2014 - 7:31 pm

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

Mr Papa
Simi Valley, CA
Member
Free Members
Oct 5, 2014 - 7:50 pm

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

Bart C.
New Jersey, USA
Member
Free Members
Oct 5, 2014 - 7:52 pm

thumbnail-icons.jpgImage Enlarger

Mr Papa
Simi Valley, CA
Member
Free Members
Oct 5, 2014 - 8:05 pm

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;
}
Bart C.
New Jersey, USA
Member
Free Members
Oct 5, 2014 - 8:15 pm

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?

Mr Papa
Simi Valley, CA
Member
Free Members
Oct 5, 2014 - 9:31 pm

not change, but add the:

display:none;

to each...

Bart C.
New Jersey, USA
Member
Free Members
Oct 5, 2014 - 10:11 pm

ok, thank you, that worked perfectly.

Bart

Mr Papa
Simi Valley, CA
Member
Free Members
Oct 5, 2014 - 11:30 pm

You are welcome...

1