I've come across numerous versions of this question, but none have been successful for me.
I'm attempting to achieve rounded corners in IE8 similar to what I see in Firefox and Chrome. Below is my CSS code after integrating css3PIE:
border-top-right-radius: 10px;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
-webkit-border-radius: 10px; -moz-border-radius: 10px;
behavior:url(/PIE.php);
position:relative;
z-index: 0;
I tried replacing 'PIE.php' with 'PIE.htc', but it didn't work. Both my HTML index file and the PIE files are located in the same directory as the CSS sheet. I also added the z-index and position rules as suggested by other posts, but no luck there either. I even attempted different paths for PIE.htc and PIE.php, but nothing seems to be working...
Is there any other solution I can try, or am I missing something here? Appreciate any help, Jason