You are not logged in.
Tonight I played around with the New Tab/Home pages.
1) I wanted to enlarge the icons of Top Sites
2) I removed the Search Box.
Search Box (Yes or No)?
If you try to type a word, a pop-up menu opens in the URL bar.
This field has not been active for a long time.
If you are already using userContent.css, just add the code to the end of the file and you can try it out:
@-moz-document url-prefix("about:newtab"), url-prefix("about:home") {
/* Activity Stream - Web Site Icon: Full Size */
.top-site-outer .tile .icon-wrapper {
width: 100% !important;
height: 100% !important;
}
/* Add Top Site - '+' Button */
.top-site-outer.placeholder.add-button .tile .icon-wrapper {
background-size: 60% 60% !important;
background-position: center center !important;
--icon-color: #0098ff !important;
}
/* Remove Search Wrapper */
.search-inner-wrapper {
display: none !important;
}
}
Note *
It should also work in older versions of Firefox.
If people would know how little brain is ruling the world, they would die of fear.
Offline
Hi @marens, I came here to ask you a question and saw you just posted this. I'm now on FF 137 and playing around with vertical tabs and the sidebar. With these enabled, and both the menu bar and title bar turned off, the address bar is _really_ close to the top of the screen. Is there an easy way to add a few pixels of padding to get the address bar a bit lower?
Offline
^ I'm not sure I understood correctly.
It would be easier if you posted a screenshot, but try this in userChrome.css:
#navigator-toolbox > toolbar:not(#toolbar-menubar):not(#TabsToolbar) {
padding-top: 8px !important;
}
If people would know how little brain is ruling the world, they would die of fear.
Offline