Wordpress Design

Soldato
Joined
29 Dec 2004
Posts
5,653
Location
Chatham, Kent
http://92.40.47.235/irc/

Code:
<body>
<div id="wrapper2">

	<div id="header">
	       
         	<h1><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a><form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>"><input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" /><input type="submit" id="sidebarsubmit" value="Search" /></form></h1></div>

I want the search bar on the right of that section.

How do i go about doing this?

Thanks,

Andy
 
Can't see the page, but what I did on my website was wrap a div around the search function and floated it to the right.

Code:
HTML

<div id="search">
<form method="get" id="searchform" name="searchform"><input type="text" value="" name="s" id="s" /> <input type="submit" id="searchsubmit" value="Search" class="btn"/></form>
</div>

Code:
CSS

#search {
   float: right;
        }
 
well you *** try adding

#s
{
float:right;
}

and then the search box should float right, but until you load the page so people can view it, its hard to help :-S
 
Back
Top Bottom