Topic: #brdfooter visible with logn horz scrollbar
Hi, in base.css
#brdfooter H2, #brdstats H2, #brdstats .conl DT, #brdstats .conr DT,
#modcontrols DT, #searchlinks DT, DIV.postright H3 {
POSITION: absolute;
DISPLAY: block;
OVERFLOW: hidden;
WIDTH: 1em;
LEFT: -999em
}
It make long horz scrollbar in bottom in IE not in Firefox that make a problem when switch to right, if you want to see it by replace LEFT by RIGHT and refresh.
after try i change "DISPLAY" property to "none"
#brdfooter H2, #brdstats H2, #brdstats .conl DT, #brdstats .conr DT,
#modcontrols DT, #searchlinks DT, DIV.postright H3 {
POSITION: absolute;
DISPLAY: none;
OVERFLOW: hidden;
}
Is it good way to resolve that problem?