Search…

X3 Photo Gallery Support Forums

Search…
 
Ruud de Soet
Experienced
Topic Author
Posts: 26
Joined: 11 Apr 2018, 09:42

Share by mail

01 May 2018, 15:31

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?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13997
Joined: 30 Sep 2006, 03:37

Re: Share by mail

02 May 2018, 01:49

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);
  }
}
 
Ruud de Soet
Experienced
Topic Author
Posts: 26
Joined: 11 Apr 2018, 09:42

Re: Share by mail

02 May 2018, 08:10

Great! 
Exif info is gone,  now I see only the "date" stamp. Can this info also be hidden?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13997
Joined: 30 Sep 2006, 03:37

Re: Share by mail

02 May 2018, 09:09

Code
.x3_file .date {
  display: none;
}
 
Ruud de Soet
Experienced
Topic Author
Posts: 26
Joined: 11 Apr 2018, 09:42

Re: Share by mail

02 May 2018, 10:23

Date still visible.
[img]blob:3c20975d-b6f4-4311-81ab-d17decd51b78[/img]
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13997
Joined: 30 Sep 2006, 03:37

Re: Share by mail

02 May 2018, 11:42

Sorry, .x3-file not .x3_file:
Code
.x3-file .date {
  display: none;
}