It's an <a> (link) inside a <button>.
And this css makes the linktext black: a:active { color: #000; }
What is it? A button? A link? Or a link that looks like a button?
Are you planning to display a form?
If it's a link that looks like a button, changeto* Remove the <button> tags
** Add class="btn" to <a>
And this css makes the linktext black: a:active { color: #000; }
What is it? A button? A link? Or a link that looks like a button?
Are you planning to display a form?
If it's a link that looks like a button, change
Code:
<button class="btn" type="submit"><a href="https://horizonsuitesmilos.reserve-online.net" target="_blank">Availability</a></button>
Code:
<a class="btn" href="https://horizonsuitesmilos.reserve-online.net" target="_blank">Availability</a>
** Add class="btn" to <a>
Statistics: Posted by Mr. Wimpy — Sun Sep 08, 2024 7:31 am