Mobilefirst 6.3 Css bcakground images not showing In android device -
i trying use background image in mobilefirst project. works fine on web browser , simulator.
but background images not showing in android device.
this css code
.brown-inner { background: url("../images/bg_board_brown_center.png") repeat-y scroll left top transparent; padding: 10px; text-align: center; }
change "images" "images" , should work.
from:
background: url("../images/bg_board_brown_center.png") ....
to:
background: url("../images/bg_board_brown_center.png") ....
i've done similar test:
- created new project , application, added android environment
in my-app\common\css\main.css added following:
body { background: url("../images/icon.png");}
launched app in android emulator. result:
Comments
Post a Comment