Sir Logic
unread,Oct 23, 2009, 2:31:52 PM10/23/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Better Webapps Firefox Extensions
This functionality actually still works, you just can't see the button
because of the changes in how FireFox 3.5 handles the CSS, you can
either use the keyboard shortcuts z and shift z, click on the
invisible button, or change the style code to the following to fix the
buttons:
// Styles for Switch Button
GM_addStyle(<><![CDATA[
#naviSwitchButton, #headSwitchButton {
position: absolute;
width: 0;
height: 0;
background: blue;
border: 12px solid white;
-moz-border-radius: 2px;
cursor: pointer;
-moz-opacity: 0.3;
}
the two things are add the background attribute, and change the border
attribute, and the buttons will again appear.