seen from China
seen from Russia
seen from Uzbekistan
seen from China
seen from United States
seen from Croatia

seen from Australia
seen from United States

seen from United Kingdom
seen from United States

seen from United States
seen from Georgia
seen from China
seen from United States
seen from China
seen from Spain
seen from United States
seen from United States
seen from China

seen from Croatia
Full-screen Search box Bootstrap
hello! i was wondering if you know of any search bar coding/tutorial? thank you in advance!
hi anon - try these!
search bar and custom search suggestions by glenthemes
how to make a search box by sorrism
search tags tutorial by shythemes
how to make a search box by LMthemes
:)
A search engine is a web-based tool. The search engine enables users to locate or find information on the World Wide Web / WWW. Best examples of searc
Theme #004: Bad Romance Preview | Download
ABOUT: This is a simple theme. It’s posts are 400px. This theme as just one custom like in the navigation. The theme comes with three update tabs next to the description. A search bar. Optional custom ask page.
FEATURES:
Post widths of 400px
Sidebar image is 250px by 300px
Unnested captions
Custom tumblr controls
Like and reblog buttons
Color photo lightboxs
Minimal soundcloud and spotify players
Custom tooltips
Search bar
Custom ask page redirect
NOTES: For the custom color on the photoset/photo lightbox. The text reads Lightbox RGBO. It stands for Red, Green, Blue, Opacity. To change it just fill in the color’s numbers and opacity level. (Example 150, 137, 136, 0.8)
Please Like or Reblog if you are using/going to use my themes. If you find any bugs please let me know so I can fixed them right away. Please leave my credit link in tacked so others can find me, please + thank you!
Theme #33 (Thriller Themes & Creepy Codes Challenge )
preview 1 // preview 2 // code (alt.)
Notes:
- Do not redistribute this theme and claim it as your own. - Do not remove the credit or move it to another page. - Minor changes to this theme are allowed. - Please like/reblog if using.
If you like my designs, but you would like to have an unique theme you can commission me.
Features: (under the cut)
Here's a quick tutorial of how to add a Search Box for your Tags. Is quick easy and fun. Here's how the Search Box looks like: Note : You ca...
I’m just gonna put this here, because it seems like it takes forever to find a good version of this when I actually need it.
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