• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

CSS Help...

in this section:
.graph .bar {

display: block;

position: relative;

background: #1645AE;

text-align: center;

color: #FFFFFF;

height: 1em;

line-height: 1em;

add:
margin-left: 0px;
margin-right: auto;

to get:
.graph .bar {

display: block;

position: relative;

background: #1645AE;

text-align: center;

color: #FFFFFF;

height: 1em;

line-height: 1em;

margin-left: 0px;

margin-right: auto;


}
 
I'm not a CSS pro, I'd probably go with what superjohnyo says if it works. But I did figure out that if you add _float: left; to .graph .bar it also works.

I know CSS, but when it comes to why something works in FF and not IE or vise-versa, I have absolutely no clue. I really hope IE7 fixes all these problems...
 
Back
Top