
Originally Posted by
DJLQD
How do I change the position of the header search box to where it needs to be? I have included the link to my site.
www.lhalsportscards.com
In your stylesheet.css file, change this:
Code:
#navMainWrapper {margin: 0em;background:transparent;font-weight: normal;color: #230f0f;height: 1%;width: 100%;margin-top:25px;}
#navMain ul {margin: 0;padding: 0.5em 0em;list-style-type: none;text-align: center;line-height: 1.5em;float:right;margin-top:40px;background:transparent;padding:15px;margin-top:3px;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;}
#navMain ul li {display: inline;position:relative;top:-68px;}
to this:
Code:
#navMainWrapper {margin: 0em;background:transparent;font-weight: normal;color: #230f0f;height: 1%;width: 100%;position:relative;right:-90px;}
#navMain ul {margin: 0;padding: 0.5em 0em;list-style-type: none;text-align: right;line-height: 1.5em;float:right;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;}
#navMain ul li {display: inline;}
and this:
Code:
#header-lan-curr {margin:0em;float:right;color:#444;position:relative;top:25px;}
to this:
Code:
#header-lan-curr {margin:0em;float:right;color:#444;position:relative;top:125px;right:20px;}
And this:
Code:
#navMainSearch {float:right;position:relative;top:-113px;right:-75px;z-index:15000;}
to this:
Code:
#navMainSearch {float:right;position:relative;z-index:15000;margin-right:-100px;margin-top:140px;}
Thanks,
Anne
Bookmarks