Text Script:
<script> var myVar = setInterval(myTimer, 100); function myTimer() { if(document.getElementsByClassName('hl_button')[0]) { document.getElementsByClassName('hl_button')[0].innerText = 'Continue'; //Your button text here clearInterval(myVar); } } </script>
Custom CSS:
<style> .vdpCell.selected .vdpCellContent, .hour-select input:checked+label, button.hl_button { background-color: #005840 !important; border-color: #005840 !important; } .vdpCell.selectable:hover .vdpCellContent { background-color: #4A9E86 !important; } .selectable .vdpCellContent { color: #000 !important; } .vdpCell.selected .vdpCellContent { color: #fff !important; } .load-more { color: #005840 !important; } .hour-select label:hover { background-color: #d1f0e7 !important; border-color: #d1f0e7 !important; } .vdpArrowPrev:after { border-right-color: #005840; } .vdpArrowNext:after { border-left-color: #005840; } </style>