Discover the following CSS guidelines and incorporate them into your stylesheet
css: line: 555
iframe#tumblr_controls {
position: fixed !important;
right: -310px !important; // shifts button 310px to the right.
top: 9px !important;
width: 160px;
z-index: 5000 !important;
}
To align the search box properly:
css: line: 150
#search {
border-left: 0 solid #DDDDDD;
border-right: 0 solid #DDDDDD;
padding: 20px 15px 6px;
position: absolute;
right: 32px; // adjust value as needed
top: 0;
}
To switch the Lens icon from left to right in the search box
css: line: 161
#search input[type="text"] {
background: url("http://static.tumblr.com/twte3d7/V9ym4qy8v/search-white.png") no-repeat scroll 95% 6px #FCFCFC;
border: 1px solid #DDDDDD;
border-radius: 0 0 0 0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
color: #212121;
font: 12px 'Karla';
padding: 6px 35px 7px 15px; **// Make changes here**
transition: all 0.7s ease 0s;
width: 150px;
}
Update the above mentioned CSS rules
padding: 6px 35px 7px 15px;