You need to name the styles in your css the same thing as the styles in the html. in your css you have .searchbutton but in the html the style is search_button and for the current page, search_button_selected.
I saved the page to my local machine and made a few changes to this section of code including adding ", .search_button, .search_button_selected and changing the color to "red" and when I reload my local version of the page the numbers on the button as well as the Next have red text.
- Code: Select all
.searchbutton, .search_button, .search_button_selected { background-image: url("picts/button.gif");
background-color:#F0F0F0;
FONT-FAMILY: arial, verdana, helvetica, sans-serif;
color: red;
font-size: 8pt;
height: 20px;
width: 35px;
cursor:hand;
font-weight: bold;
text-align: center;
BORDER: #000066 1px solid }
I'm not great of css so I don't understand the differnce between #search_button and .search_button but you have a section
- Code: Select all
#search_button {text-decoration:; line-height: 18px; cursor: hand; FONT-FAMILY: Calibri; border: none; WIDTH: 145PX; padding: 0.0em 0.0em; margin: -0.0em -0.0em; color: navy; background: #F4F4F4; font-size: 15px; text-align: left; }
#search_spacing {line-height: 1px;}
which may be what you are modifying. If that is the what you are modifying try changing it to .search_button instead of #search_button and see if that makes a difference. Note that the current page button has the style search_button_selected so you would need to add that also.