Hello,
Go to your database -> structure and do empty in required tables.
Thank you.
Thank you.
Just trying to completly reset the plugin to see if I can make the “book now” button appear.
Have you found out the solution to this problem ?
The developer is looking into the problem now.
Can you wait a little longer ?
Thank you.
The issue is generated because all buttons in your theme are set to position:absolute and other settings and the Book button is affected by these characteristic.
If you comment these lines in the main.css file the Book button will be displayed.
input[type="submit"]{
/ position: absolute; /
/ right: -10%; /
/ width: 50px !important; /
/ height: 50px; /
/ bottom: 4px; /
/ text-indent: -999px; /
/ background-color: white; /
/ background: white no-repeat url('../img/sprite.png'); /
/ background-size: 150px; /
/ background-position: -120px -41px; /
}
Thank you.