Stephen
You could use text links and style them with borders.
See example below.
Do a web search on “style links css“
Given that you have many links, you could consider the options in the following Sitepoint article to use lists as a navigation tool.
I think it is easier than using buttons.
https://www.sitepoint.com/build-site-navigation-css/
The page that the link references would have the abase shortcode.
[abase sql=”UPDATE AVDMASTER p, SightingsEntrytmp pp
SET pp.MAKE = ‘1’
WHERE pp.UNIQUEID = p.UNIQUEID AND p.MAKE = ‘0’”]
———————————————
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
<html>
<head>
<title>Text Link</title>
<style type=”text/css” media=”screen”>
.button-link {
padding: 10px 15px;
background: #4080FF;
color: #FFF;
border: solid 1px #202080;
user-select: none;
width: 120px;
text-align: center;
text-decoration: none;
}
.button-link:hover {
background: #386098;
border: solid 1px #304080;
width: 120px;
}
.button-link:active {
background: #305080;
border: solid 1px #20405F;
width: 120px;
</style>
</head>
<body>
<p>Text Link</p>
</body>
</html>
Richard Harding