Hi Jenny,
Saw your previous post about this, will take a detailed look later this evening.
Thanks!
Hi Danny,
Thanks for your quick response. Will wait for your update then.
Thank you again.
Hi Jenny,
Nice find, just pushed version 1.1.9.1 to WordPress.org which addresses this issue.
Hope that helps!
Great. Now it works perfectly. Thank you Dan!
Hi Danny,
Is there a way to hide the STB completely while on mobile device?
I can see that it will be shown when the width of the box is less that the width of the screen, but in my case the following happens:
1. I’m testing using a 320×480 mobile. The SBT doesn’t show.
2. But if I tilt my screen, it becomes 480×320 and the SBT appears but the problem is the upper portion of the box gets cut off and is never visible coz the height is more than 320. So is there a way to hide it completely on mobile devices?
Or maybe check if the height matches the height of the device?
Should I open a new thread? Kindly advice & sorry for the trouble.
I’ve made the following changes:
In file class-public.php, line number 130
Changed from
@media(max-width: <?php echo ( !empty( $css['width'] ) ) ? ( absint($css['width']) + 150): '719'; ?>px) {
to
@media(max-width: 600px) {
This should stop it from appearing in screens lower than 600px width. I know it’s a hack, but are there any consequences? Kindly guide.