I have successfully created a bootstrap button with an embedded link. Here is how it appears:
Upon hovering over the button:
This is the code snippet for the button:
<div class="s-8"><button type="button" onClick="javascript:location.href = 'administration.php';">Administration</button></div>
As for the logout button:
<div class="s-4"><button type="button" onClick="javascript:location.href = 'logout.php';">Logout</button></div>
The administration button functions perfectly on desktop browsers (IE, Safari, Firefox, Chrome, Opera) and redirects to the respective page. However, I am facing issues with its functionality on mobile devices.
In contrast, the logout button performs seamlessly across all platforms. This discrepancy has left me perplexed.