Page 1 of 1

EU Cookies Consent/Help link text

Posted: 12 Feb 2026, 12:42
by daniel
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.

Re: EU Cookies Consent/Help link text

Posted: 13 Feb 2026, 04:26
by mjau-mjau
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;
}

Re: EU Cookies Consent/Help link text

Posted: 13 Feb 2026, 21:17
by daniel
Merci Merci

Re: EU Cookies Consent/Help link text

Posted: 20 Feb 2026, 11:43
by daniel
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.

Re: EU Cookies Consent/Help link text

Posted: 20 Feb 2026, 20:47
by mjau-mjau
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>

Re: EU Cookies Consent/Help link text

Posted: 21 Feb 2026, 14:31
by daniel
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.