Optica Tip: Fixed menu / search position
The collapsed navigation menu in Optica is set to a static position by default, meaning that you can only access it by scrolling to the top of the page.
However, with a simple custom CSS tweak, you can set the burger menu to a fixed position, that stays aligned when you scroll:
/* Fixed burger menu */
.nav-menu-wrapper {
position: fixed;
}
This way, your menu is always visible and accessible when visitors scroll through your blog. You can see an example here.
This tweak will also affect the search bar, that replaces the burger menu when the navigation is expanded.
Update June 2015: If you are using the latest version of Optica, the burger menu has been omitted. However, you can still have a fixed search bar, that allows you to look up content while scrolling through the blog. The updated CSS would be as follows:
/* Fixed search bar */
.logo-wrapper {
position: fixed;
}
On a related note, if you wish to remove the new accompanying Tumblr reference logo, you can refer to this post.