Jump to content

[Solved] Buttons displaying incorrectly in IE8


Recommended Posts

I was able to resolve this issue which was caused by my carelessness. In case it happens to others, I had forgotten to comment out a curley bracket:

Wrong:

/*.header_button a:active {
margin-left: 8px;
padding: 10px 5px 2px 5px;
display:block;
float:left;
text-align:center;
text-decoration: none;
font-size: 1em;
color: #FFF;
background-color: #23b8b8;*/
}

Right:

/*.header_button a:active {
margin-left: 8px;
padding: 10px 5px 2px 5px;
display:block;
float:left;
text-align:center;
text-decoration: none;
font-size: 1em;
color: #FFF;
background-color: #23b8b8;
}*/

Link to comment
Share on other sites

  • 5 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...