Jump to content
Sign in to follow this  
joeteplow

Search form and Menu on same line

Recommended Posts

joeteplow

Hi I know their are similar posts to this but none that I could find with the Platform pro template. Link:www.insurancecreations.com I added a menu item that caused the searchform to drop to a new line. I read a post that showed how to widen the navbar width so i added this into my custom code:

#primary-nav ul.main-nav{width:780px;}
That worked to widen the navbar but then the search bar was to wide and dropped down to a new line. I then proceeded to make the search bar narrower by reducing the .searchform width from 210px to 200
.searchform {
			position: relative;
			width: 210px;
			margin: 0 auto;
			margin-top: 3px;
	
		}

This changed the width of the search form but it is still on a different line. I am sure this has to do with margins or padding. Anyone know how to get the navbar and the searchform on the same line? Thanks Joe

Share this post


Link to post
Share on other sites
joeteplow

Ok I was fiddling with it and I added this css it seems to work: Changed position from relative to absolute and added left:760px to push it to the right of the menu.

.searchform {
			[b]position:absolute;
	                left:760px;[/b]
			width: 210px;
			margin: 0 auto;
			margin-top: 3px;
		}

I am not familiar with css, was there an easier or more correct way of doing this? Thanks, Joe

Share this post


Link to post
Share on other sites
catrina

The way you fixed it should suffice. As long as the CSS wasn't added to any of the parent files, the change is okay.


Please read the docs before posting. Please do not private message me unless I ask you to.

Designer | Catrina Dulay

Founder | Catrina and Mouse

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×