[Solved] Link not working on export

Hi, I have a strange behaviour with my link when I export my website. They are not longer working. External link work, but in site link don’t, like a button link to a section or menu link. You should note that they work successfully on webflow server when i’m publishing my site. But i’ve tried my export in Firefox, safari, chrome and Opera, without success. I’ve uploaded them on a server, and they don’t work anymore.

Webflow publish : http://bauhem2014.webflow.com/

Public link : https://webflow.com/design/bauhem2014?preview=e4ef31ef16d403958478a1cffdc142f2

Hosted version : http://bauhem.cloudvent.net

I wanted to put my website online soon.

Thanks in advance
Guillaume

It seems like your background video embed code has some invalid HTML that completely confuses our HTML-beautifier library for exported code:

<video id="video_background" autoplay="true" loop="loop" muted="muted" volume="0" poster="http://bauhem.cloudvent.net/images/image-poster-video.jpg" z-index: -1;">

Should be:

<video id="video_background" autoplay="true" loop="loop" muted="muted" volume="0" poster="http://bauhem.cloudvent.net/images/image-poster-video.jpg" style="z-index: -1;">

It might even be that you don’t need that z-index value there, since you define in #video_background CSS definition.

Let me know if changing that works for you.

1 Like

By the way, you can double check your code in the HTML5 Validator here: http://validator.w3.org/

e.g. http://validator.w3.org/check?uri=+http%3A%2F%2Fbauhem.cloudvent.net&charset=(detect+automatically)&doctype=Inline&group=0 shows the error I pointed to in your hosted code.

1 Like

Wow, thanks a lot. Your my “videobackground” hero. :smile: loll