Having some trouble using CSS to create rounded corners on my Facebook fan page. Everything works fine except for Safari browser. I've tried inline styles and a separate stylesheet, but no luck. Any help would be appreciated.
My CSS for rounded corners:
-webkit-border-radius: 0px 0px 8px 8px;<br />
-moz-border-radius: 0px 0px 8px 8px;<br />
-khtml-border-radius: 0px 0px 8px 8px;<br />
-webkit-box-shadow: #666 0px 2px 3px;<br />
border-radius: 0px 0px 8px 8px;<br />
-moz-box-shadow: #666 0px 2px 3px;<br />
box-shadow: #666 0px 2px 3px;<br />
padding-left: 5px;<br />
padding-right: 5px;<br />
background: #DAE1EB;<br />
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#DAE1EB), to(#DAE1EB));<br />
background: -moz-linear-gradient(#DAE1EB, #DAE1EB);<br />
background: linear-gradient(#DAE1EB, #DAE1EB);<br />
-pie-background: linear-gradient(#DAE1EB, #DAE1EB);<br />