Difference between revisions of "Patch Phone Editing the Lock Screen"

From WebOS Internals
Jump to navigation Jump to search
Line 9: Line 9:
  
 
[[Image:Background-editing-example.jpg]]
 
[[Image:Background-editing-example.jpg]]
 
=== Editing the "Enter Number or Name..." Text Color===
 
 
It was driving me slightly crazy that there's a slight greenish tint to the writing above the dialpad. 
 
 
Easy fix.
 
 
Open '''/usr/palm/applications/com.palm.app.phone/stylesheets/dialpad.css'''
 
 
Change:
 
 
<pre><nowiki>
 
.text-input.hinttext {
 
  color: #bcceb3;
 
  font-size: 16px;
 
  padding: 0 60px 0 40px;
 
  overflow: hidden;
 
  white-space: nowrap;
 
  text-overflow: ellipsis;
 
}
 
</nowiki></pre>
 
 
to:
 
 
<pre><nowiki>
 
.text-input.hinttext {
 
  color: #ffffff;
 
  font-size: 16px;
 
  padding: 0 60px 0 40px;
 
  overflow: hidden;
 
  white-space: nowrap;
 
  text-overflow: ellipsis;
 
}
 
</nowiki></pre>
 

Revision as of 06:26, 6 August 2009


Editing the Lock Screen

Changing the Lock Screen background is easy as well. In fact, the image resides in the same directory as the dialer's background.

The file that you'll want to edit is the backdrop-firstuse.png file.

Simply follow the directions above for copying the files out and back into the /usr/palm/applications/com.palm.app.phone/images/ folder, reboot and your lock screen background is changed.

Background-editing-example.jpg