Top Stats
Posted: 16 Sep 2012, 23:46
Ohh. Amazing ! please if you can post your edits, I would like to have a look at them.
Database and Demo for phpBB3 BBCodes, Mods and Smilies
https://phpbb3bbcodes.com/
row_height : '44px',
max_items : 5,
height:132px;
height: 41px;
Code: Select all
/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
#vertical-ticker li { height: 42px; }
}
just to show you can go as much as you like here is 9 rows in firefox
/* opera */
noindex:-o-prefocus, #vertical-ticker li {
height: 42px;
}
Code: Select all
/* Top Stats Mod */
#vertical-ticker{
position:relative;
height:132px;
overflow:hidden;
}
#vertical-ticker li{
display:block;
}
/* IE 10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
#vertical-ticker li { height: 42px; }
}
/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
#vertical-ticker li { height: 42px; }
}
/* opera */
noindex:-o-prefocus, #vertical-ticker li {
height: 42px;
}