Posts

Showing posts with the label Drop Down Menu

Add a Floating Drop Down Menu In Blogger With Search Box

Image
A drop down menu is something that contains navigation URl's of your blog and making it easier to find the content users are looking for. A floating element is something that sticks to your blog at the place you post it and scrolling doesn't affects it position. Today I am sharing a drop down menu for blogger with search box. Adding Floating DropDown menu to blogger Login to your blogger dashboard. Select your blog. Select Template . Click Edit HTML.  Add this code just above the </body> tag <style>   #naviopdropcont {     width: 100%;     height: 45px;     display: block;     padding: 0;     margin: 0 0 20px 0;     z-index: 100;     top: 0px;     left: 0px;     position: fixed;     box-shadow: 2px 2px 5px #444444;     -moz-box-box-shadow: 2px 2px 5px #444444;     -web-kit-box-shadow: 2px 2px 5px #444444;     -goog-ms-box-shadow: 2px 2p...