Moving Firefox FindBar to the Top Right

Got annoyed with the find bar being at the bottom of the page, decided to search around and found a Stylish CSS that moves it to the upper right side of the main window like Google Chrome.

findbar

Just and add the following in userChrome.css (feel free to customize):

.browserContainer findbar, #viewSource #FindToolbar {
-moz-box-ordinal-group: 0;
position: fixed !important;
right: 30px;
margin-top: 30px !important;
box-shadow: 1px 2px 3px rgba(0, 0, 0, .25) !important;
border: 1px solid threedshadow !important;
border-top: none !important;
border-radius: 0 0 3px 3px;
transition-property: margin-top, opacity, visibility !important;
}

Moving Firefox FindBar to the Top Right

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.