question... for theme 207 where would the search box be / i would like a search box but i have no idea where it is. although that might just be sleep deprivation. but still.
hi there! sure, don’t worry. first, add this in the css:
form { text-align:center; }
.search .query { font-weight:bold; text-align:center; font-size: 11px; border: 0; outline: 0; margin:0px 0px 10px; } .query::placeholder { color: {color:Body Text}; }
input:focus::-webkit-input-placeholder {color: transparent;} input:focus:-moz-placeholder {color: transparent;} input:focus::-moz-placeholder {color: transparent;} input:focus:-ms-input-placeholder { color: transparent;}
and then pick where the search will appear, like, it can be after description. search for <div class="description">, and after the closing </div>, you paste this:
<form class="search" action="javascript:return false"> <input type="text" class="query" placeholder="search tags"> </form>
now the script to make it work, scroll down to the end of the theme, you’ll find <script>. paste this after:
$(document).ready(function(){ $('.search').submit(function(event){ var value = $('input:first').val(); location.replace('http://{Name}.tumblr.com/tagged/' + value); }); });
if things doesn’t work properly, replace the quotation marks. let me know if worked hun













