Quote:
Originally Posted by brattanek
In Chrome I have a little bug on Icon Legend:
|
It's actually the style variables at work.
To correct if you don't like there are 2 css templates you'll have to edit.
In forumdisplay.css
FIND:
Code:
dl.icon_legends dt {
float: {vb:stylevar left};
clear: {vb:stylevar right};
margin-{vb:stylevar right}: {vb:math {vb:stylevar padding}/2};
}
REPLACE WITH:
Code:
dl.icon_legends dt {
float: {vb:stylevar left};
clear: {vb:stylevar left};
margin-{vb:stylevar left}: {vb:math {vb:stylevar padding}/2};
}
Then in forumhome.css
FIND:
Code:
.wgo_subblock dl.icon_legends dt {
float: {vb:stylevar left};
clear: {vb:stylevar right};
margin-{vb:stylevar right}: {vb:math {vb:stylevar padding}/2};
}
REPLACE:
Code:
.wgo_subblock dl.icon_legends dt {
float: {vb:stylevar left};
clear: {vb:stylevar left};
margin-{vb:stylevar left}: {vb:math {vb:stylevar padding}/2};
}
It's just changing the variables to the left instead of the right.