Top Stats

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Top Stats

Post by Stoker »

There is also the tweaks.css edit.

My settings for SE Pro is this:
Overall_header
row_height : '44px',
Colours.css
height:132px;
Tweaks.css
height: 41px;

Top Stats

Post by martin123456 »

As i pointed out it displays perfect on all browsers IF you use pre mod.

If you dont use pre mod then its screwed in firefox only.

Now in return that then leaves 2 options there is some thing in the pre mod thats not in phpbb or firefox is screwed

Thats the settings i use stoker (on local) but its still screwed in firefox.

Top Stats

Post by Stoker »

Is it screwed here on this site too?

Top Stats

Post by martin123456 »

Stoker wrote:Is it screwed here on this site too?
Nope

Just a thought tho have you tried it on any other themes ?

Top Stats

Post by Stoker »

Yes, several. It can be done by changing the settings mentoined in my previous post.

Top Stats

Post by Stoker »

Well, I can see that mine fits well in IE and FF but is a bit too high in Safari, Chrome and Opera.
I think there is a css hack to get it right

Top Stats

Post by martin123456 »

Hmmm you say that but yours shows good on all browsers infact im here now on all 3 browsers and looking good.

IE9 firefox chrome.

Top Stats

Post by Stoker »

I think its a bit off in Opera. Not quite high enough.
So its probably Style dependant.
I found some hacks thats working for me on other sites nor using my own themes :D

Code: Select all

/* 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;
}
Test them.

Top Stats

Post by martin123456 »

Stoker wrote:I think its a bit off in Opera. Not quite high enough.
So its probably Style dependant.
I found some hacks thats working for me on other sites nor using my own themes :D

Code: Select all

/* 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;
}
Test them.
Issue fixed just tweak the numbers to suit cheers stoker.

As it shows ok in all browsers but firefox i just used this

Code: Select all

/* firefox */
noindex:-o-prefocus, #vertical-ticker li {
  height: 44px;
}

Top Stats

Post by Stoker »

Which was the part to fix Opera ;)
Firefox/IE should be handled by changing the default code.
But if it works, who cares :D