10-24-2012 07:00 AM
how can i set the background color of a app which is using bbui.js?
its not working just to set a:
body {
background-color: #000000;
}
Solved! Go to Solution.
10-24-2012 10:18 AM
10-24-2012 03:11 PM - edited 10-24-2012 03:13 PM
Find these lines in the bbui.css file and edit the white to the color you want:
.bb-bb10-lowres-screen {
font-size: 16pt;
position:absolute;
top:0px;
left:0px;
bottom:0px;
right: 0px;
background-color: white;
}
.bb-bb10-hires-screen {
font-size: 30pt;
position:absolute;
top:0px;
left:0px;
bottom:0px;
right: 0px;
background-color: white;
}
10-25-2012 01:01 PM
It's even easier than that.. just set the style or class on your screen <div>
https://github.com/blackberry/bbUI.js/blob/master/
10-25-2012 06:18 PM