Search…

X3 Photo Gallery Support Forums

Search…
 
daniel
Experienced
Topic Author
Posts: 29
Joined: 28 Sep 2007, 12:42

EU Cookies Consent/Help link text

12 Feb 2026, 12:42

Bonjour, In /panel/EU Cookie Consent/Help link text : I can't find how to add a link to a ".txt, or pdf, or???" (CONFIDENCE POLICY). And I would also like to change the back ground of the main message, more transparency. Can you help me ? Merci.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14469
Joined: 30 Sep 2006, 03:37

Re: EU Cookies Consent/Help link text

13 Feb 2026, 04:26

daniel wrote:I can't find how to add a link to a ".txt, or pdf, or???"
Just use some HTML, for example:
Code
<a href="/path/to/file.pdf" target="_blank">Click here</a> to view PDF.
daniel wrote:And I would also like to change the back ground of the main message, more transparency.
I'm not sure if this is recommended, but you can change it with some custom CSS. Go to panel > Settings > Custom > Custom CSS, and add something like the below:
Code
.cc-window {
  background-color: rgba(0, 0, 0, .8 ) !important;
}
 
daniel
Experienced
Topic Author
Posts: 29
Joined: 28 Sep 2007, 12:42

Re: EU Cookies Consent/Help link text

13 Feb 2026, 21:17

Merci Merci
 
daniel
Experienced
Topic Author
Posts: 29
Joined: 28 Sep 2007, 12:42

Re: EU Cookies Consent/Help link text

20 Feb 2026, 11:43

Hello, I would like to create a link in the footer: "GDPR / Privacy Policy", which will lead to a Page: "GDPR", containing a text: "Privacy Policy". Is it the right approach "Footer + Dedicated Page" or another solution more specific to X3 ? And how to implement this ? Thank you for your help.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14469
Joined: 30 Sep 2006, 03:37

Re: EU Cookies Consent/Help link text

20 Feb 2026, 20:47

daniel wrote:Is it the right approach "Footer + Dedicated Page"
If you mean add the link in the footer to a dedicated page, then yes that's exactly how I would do it ...

1. First create the page and call it whatever you want. If you don't want it to display in your main X3 menu, then make sure to click the "hide" icon for the page.

2. In Settings > Custom > Footer, create the text link:
Code
<p><a href="/privacy-policy/">GDPR / Privacy Policy</a></p>
 
daniel
Experienced
Topic Author
Posts: 29
Joined: 28 Sep 2007, 12:42

Re: EU Cookies Consent/Help link text

21 Feb 2026, 14:31

Merci mjau mjau. I wanted to be sure of using the right method. I will be able to set up this text on a dedicated page, it's perfect.