Google Voice is the eighth wonder of the world.
Mac users lucky enough to have secured an invite might consider creating a Fluid site specific browser to carve out some space for Google Voice on the Dock.
An SSB is quite useful in itself, but even more so when a few CSS tweaks are applied.
After launching Fluid and creating the SSB for http://google.com/voice, launch the newly created app and open the preferences panel.
Click on Userstyles and then on the plus button to add a new URL pattern. In my case I simply used * for the pattern, which matches any url. For more information on Userstyles, watch this video.
Adding your own CSS formatting instructions will alter how the page is displayed and potentially remove annoyances. Here are a few examples:
Allow the SMS textarea to be resized
.gc-quicksms div textarea {
resize: both !important;
}Stop SMS history being hidden with a "more messages" link
.gc-message-sms-old {
display: block !important;
}
.gc-message-sms-show {
display: none;
}
Hide the "Invite a Friend" link
#gc-sidebar-invites {
display: none;
}
Hide the Google Services links
#gbar {
display: none;
}Remember to refresh the browser window with CMD-R to apply any changes made to the userstyles.








Alan Parks:
May 7th, 2010 at 8:54 am
rock
[Reply]