Setup
Include experiences css link
To include experiences css link, which is needed for the correct rendering of the widgets, please include the following line in the <head>
of your page:
<link
href="https://content.reevoo.com/experiences.css"
rel="stylesheet"
>
Note: in case your stylesheets are using !important
in html tags, some of our styles might look broken. If that is your case, include this line instead:
<link
href="https://content.reevoo.com/experiences-important.css"
rel="stylesheet"
>
Include experiences javascript link
In order for the experiences widgets to be able to render, you also need to include the following javascript link just before the closing of the <body>
tag in your page:
<script
src="https://content.reevoo.com/experiences.js"
></script>
Example page after css and javascript setup
So after the css and javascript setup, your page should look like below:
<html>
<head>
// any other non-reevoo head content
<link
href="https://content.reevoo.com/experiences.css"
rel="stylesheet"
>
</head>
<body>
// all the contents of you body here....
<script
src="https://content.reevoo.com/experiences.js"
></script>
</body>
</html>
Updated about 2 years ago