"David. E. Goble" <degoble@gtech.computing> wrote in message
news:8p66911io46d66tsfs4btug02548hi5l9g@4ax.com...[color=blue]
> Ok well here is a link to my page;
>
>
http://bow.foggy.home.insightbb.com/test.htm
>
> Any way of improving it. Either for readability and/or performance
> wise?
> Regards David. E. Goble
>
http://degoble.customer.netspace.net.au
> degoble[AT]netspace.net.au
> Po Box 648 (9 Murray St), Kingscote, Kangaroo Island SA 5223
>
>[/color]
Change the varying shaped button sizes to:
<input type="button" value="<<" title="First"
<input type="button" value="<" title="Previous"
<input type="button" value=">" title="Next"
<input type="button" value=">>" title="Last"
Or use CSS to assign a fixed width:
<input type="button" style="width:50px" value="<<" title="First"
<input type="button" style="width:50px" value="<" title="Previous"
<input type="button" style="width:50px" value=">" title="Next"
<input type="button" style="width:50px" value=">>" title="Last"
Or use CSS to fancy it up; (the first part goes above the </head> tag:
<style type="text/css">
..buttons {
background-color:#FFFFFF;
font-family:Arial,Helvetica;
width:50px;
}
</style>
<input type="button" class="buttons" value="<<" title="First"
<input type="button" class="buttons" value="<" title="Previous"
<input type="button" class="buttons" value=">" title="Next"
<input type="button" class="buttons" value=">>" title="Last"
Or use images instead of text.
What's with the questions that start with
"If you have a ..."
and don't even end with a question mark?
Also, it would be helpful to describe the page's purpose.