Let me start by saying, I am not a css expert...
If someone who IS can help me properly align the search form: I am wanting it to float to the right of the top navigation.
link here: http://marywyarphotography.com/wordpress/
thanks!
Let me start by saying, I am not a css expert...
If someone who IS can help me properly align the search form: I am wanting it to float to the right of the top navigation.
link here: http://marywyarphotography.com/wordpress/
thanks!
You could try to using position absolute on your form.
Try something like this:
#searchform {
position:absolute;
top:20px; right:0px;
}
You can play around with the values of top and right and see what happens.
You must log in to post.