I recently implemented a sleek wizard style I found on a blog, but encountered some issues with compatibility in Internet Explorer. The blog mentioned that:
For browsers lacking support for :after/:before/nth-child, the code may not function properly.
Is there a solution to address this problem and ensure smooth functionality in IE?
Here is a snippet of the CSS being used:
#wizHeader li .prevStep
{
background-color: #669966;
}
#wizHeader li .prevStep:after
{
border-left-color:#669966 !important;
}
...
...
...
.content
{
height:150px;
padding-top:75px;
text-align:center;
background-color:#F9F9F9;
font-size:48px;
}