Page 1 of 1

Share by mail

Posted: 01 May 2018, 15:31
by Ruud de Soet
When I select a photo for sharing by mail, the recipient of the mail receives a link to the photo. The photo is shown full size. With the "esc" key (Mac), the photo is displayed smaller but all exif information and time is shown. Also the frame around the photo is not user defined (CSS) frame.
Is it possible to hide the exif info ? Is it possible to use your own frame, equal to the gallery frames?

Re: Share by mail

Posted: 02 May 2018, 01:49
by mjau-mjau
Ruud de Soet wrote:When I select a photo for sharing by mail, the recipient of the mail receives a link to the photo. The photo is shown full size. With the "esc" key (Mac), the photo is displayed smaller but all exif information and time is shown. Also the frame around the photo is not user defined (CSS) frame.
Yes. The "image landing page" is required to be able to directly share photos on social media. This page is not usually seen by visitors, unless they arrive from a photo link shared on social media. The image landing page does not have any settings either.
Ruud de Soet wrote:Is it possible to hide the exif info ?
Settings > Custom > Custom CSS:
Code
.meta {
  display: none;
}
Ruud de Soet wrote:Is it possible to use your own frame, equal to the gallery frames?
Below is the CSS used for the frame on the image landing page, and also default frames when used in gallery pages. You can modify it globally. Settings > Custom > Custom CSS:
Code
@media only screen and (min-width: 641px){
  .frame figure {
    border: 6px solid #fff;
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
  }
}

Re: Share by mail

Posted: 02 May 2018, 08:10
by Ruud de Soet
Great! 
Exif info is gone,  now I see only the "date" stamp. Can this info also be hidden?

Re: Share by mail

Posted: 02 May 2018, 09:09
by mjau-mjau
Code
.x3_file .date {
  display: none;
}

Re: Share by mail

Posted: 02 May 2018, 10:23
by Ruud de Soet
Date still visible.
[img]blob:3c20975d-b6f4-4311-81ab-d17decd51b78[/img]

Re: Share by mail

Posted: 02 May 2018, 11:42
by mjau-mjau
Sorry, .x3-file not .x3_file:
Code
.x3-file .date {
  display: none;
}