Link to image here:
https://i.stack.imgur.com/oh37d.jpg
Me and my team are developing a web application for a school project using JSF2.0 and JBoss7.
We are forced to use the outdated HP touchpad to run the application, so we are connecting and viewing the app currently through the laptop’s IP on the default HP webOS browser.
Everything was working fine, until we started implementing Twitter Bootstrap to style.
The issue is, on laptop browsers (IE, Chrome, Firefox) the pages look great and have no issues, but once we view the pages on the tablet, there is a black box shadow several hundred pixels to the right of each text box and text area (shown in picture).
Does anyone know which CSS attribute would be causing something like this on an older browser?
Help is much appreciated in advance!
If it is indeed shadow related, you may want to take a look at
line 990ofbootstrap.css.Note this may differ between different versions of Twitter Bootstrap
Remove the
box-shadowdeclarations and see what happens.As a precaution, you can do a search for all
box-shadowoccurrences and comment them out to see whether it makes a difference.Once you’ve narrowed down the property and have fixed it, you can use some JS magic to only remove the shadows for that particular browser but I would ask a new question about that.