My test page is here: http://www.jamtournaments.com/p/blog-page.html and I have my main elements (the brackets) disappearing whenever I view in Internet Explorer. They actually show until I hover anywhere around them, or when I switch to a new tab. So weird and so annoying. Looking around the internet, I've tried a number of "solutions" to no avail. Would any of you dare to take a shot. Just throw me whatever you can think of. I'm willing to try it all. Thanks a ton.
Here's what the other site's gave me:
* adding <div></div> to every cell that isn't showing
* adding position:relative; instead of absolute
* adding div { display: inline-block; }
* adding div { display: block; }
* adding { zoom: 1; } to my code
* adding filter:alpha(opacity=100);
And here's the primary part of the code that probably needs the tinkering. If you need me to post it all here, I can. But viewing my page's source is probably easiest. THANKS!
.bracket
{
width:160px;
position:relative;
font-family:Verdana,Helvetica,Arial,Sans-Serif;
font-size:10px;
color:#ffffff;
text-align:left;
margin:.5em 0;
-moz-box-sizing:border-box;
box-sizing:border-box;
height:100px;
padding:.5em;
border-bottom: 1px solid #242424;
border-top: 1px solid #464646;
border-right: 1px solid rgba(0, 0, 0, .5);
border-right: 1px solid rgba(0, 0, 0, .5);
position:relative;
background: #333333;
filter: none;
background: -moz-linear-gradient(top,#464646 0,#242424 100%);
background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#464646),color-stop(100%,#242424));
background: -webkit-linear-gradient(top,#464646 0,#242424 100%);
background: -o-linear-gradient(top,#464646 0,#242424 100%);
background: -ms-linear-gradient(top,#464646 0,#242424 100%);
background: linear-gradient(top,#464646 0,#242424 100%);
-webkit-box-shadow: 0 1px 0 rgba(160, 160, 160, 0.75) inset,0 9px 6px -7px rgba(0, 0, 0, 0.75);
box-shadow: 0 1px 0 rgba(160, 160, 160, 0.75) inset,0 9px 7px -7px rgba(0, 0, 0, 0.75);
-webkit-text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.8);
}