Code changes version 1.06.1 global.css changes -------------------------------- Changes to button style: 1) The Search, Go and Submit buttons were modified to use pure css rounded corners removing the need for the background image which increases page download time. A mouse cursor style was also added which displays a "pointer" (hand) image when hovering over the button. 2) An optional div tag was added that can be used around form elements to inherit the central css styles. 3) A secure (ssl) global.css file was made available for use in pages that need encryption (https). Before -------------------------------- input.button, input.submitbutton {border: none;color:#464666;font weight:600;background:url('http://www.sfsu.edu/template/images/submit_css.png') no-repeat; } input.button {width:50px;height:19px;font-size:90%; } #main input.submitbutton {width:50px;height:19px;font-size:87%;} input.gobutton {border: none;width:28px;color:#464666;padding-top:.25em;padding-left:.30em;font-weight:600;left:-3px;background:url('http://www.sfsu.edu/template/images/gobutton_css.png') no-repeat 3px 3px;height:19px;font-size:90%;text-align:center; } After -------------------------------- #main input.button,input.button,input.gobutton, #main input.submitbutton { padding: 3px 4px; display: inline; background: #f3c654; border: none; color: #464666; cursor: pointer; font-weight: bold; font-size:90%; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px;} input.button:hover, input.gobutton:hover,#main input.submitbutton:hover {background: #ffcc66;}