Issue with the widget Reacttour: https://marketplace.mendix.com/link/component/227404

0
There is an issue with the widget Reacttour: https://marketplace.mendix.com/link/component/227404. We had to implement a guided tour for the application which was done with the widget reacttour, however when the initial pop up comes when we start the tour the pop up is not getting displayed consistently across the page, as we need the pop up to be in the centre but each time when we start the tor pop comes up either towards left or right, so help with suggestions as how to bring it towards the centre while starting the tour.
asked
1 answers
0

Hi Ambili T

 

You can use CSS to do this add this code

.reactour__popover {  position: fixed !important; 

top: 50% !important; 

left: 50% !important; 

transform: translate(-50%, -50%) !important; 

z-index: 9999 !important; /* Ensure it appears above other content */}

and replace the class name with your class name I hope this will resolve the issue.

answered