Search box
Forum » Help / Themes » Search box
Started by: stupideggstupidegg
On: 1204885146|%e %b %Y, %H:%M %Z|agohover
Number of posts: 6
rss icon RSS: New posts
Search box
stupideggstupidegg 1204885146|%e %b %Y, %H:%M %Z|agohover

How can I move the search box?

unfold Search box by stupideggstupidegg, 1204885146|%e %b %Y, %H:%M %Z|agohover
Re: Search box
Phil ChettPhil Chett 1204893757|%e %b %Y, %H:%M %Z|agohover

Its a bit fiddly cos the only way is by messing with the CSS code.
What exactly did you want to?
(maybe more importantly…. why ?) :-)

unfold Re: Search box by Phil ChettPhil Chett, 1204893757|%e %b %Y, %H:%M %Z|agohover
Re: Search box
stupideggstupidegg 1204941566|%e %b %Y, %H:%M %Z|agohover

I'm messing with the CSS code right now. I want to move the search box to the side bar. I think it will be more comfortable^^. Also one of the reasons is that I want to make the header as compact as possible.

unfold Re: Search box by stupideggstupidegg, 1204941566|%e %b %Y, %H:%M %Z|agohover
Re: Search box
Robert WRobert W 1205417173|%e %b %Y, %H:%M %Z|agohover

I saw a post some time ago that suggested that this was difficult. I'd like to do the same thing though. As a temporary measure I've just made the box invisible with 'visibility: hidden' and added a search page linked from the menu.

unfold Re: Search box by Robert WRobert W, 1205417173|%e %b %Y, %H:%M %Z|agohover
Re: Search box
makimaki 1206012441|%e %b %Y, %H:%M %Z|agohover

Where exactly do you put "'visibility: hidden"?


Help in the forum is easier with screenshots: http://community.wikidot.com/forum_screenshots

unfold Re: Search box by makimaki, 1206012441|%e %b %Y, %H:%M %Z|agohover
Re: Search box
Stephen KayStephen Kay 1209269728|%e %b %Y, %H:%M %Z|agohover

You can use this to move the search box to the side bar. Play with the left and top parameters to get it where you want it.

#search-top-box{
    float: left;
    position: absolute;
    left: 20px;
    top: 270px;
}

If you want to hide it completely:

#search-top-box{
    visibility:hidden;
}

Perhaps 'display:none' would also work.

To move it to the left of the account name and log-in:

#search-top-box{
    float: right;
    position: relative;
    left: -240px;
    top: 8px;
}
last edited on 1209269954|%e %b %Y, %H:%M %Z|agohover by Stephen Kay + show more
unfold Re: Search box by Stephen KayStephen Kay, 1209269728|%e %b %Y, %H:%M %Z|agohover
New post

Bookmark and Share

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-Share Alike 2.5 License.