Topic: opojare.com, a site about cars

I recently started a blog over at http://www.opojare.com/, and decided to go with the Arras theme. The blog is about cars.
I only modified the theme in a couple ways:
-changed background, header & logo
-changed some css on main navigation, a hover)
-changed footer (background, full-width)

Please check it out at http://www.opojare.com/ and tell me what you think!  big_smile


Regards,

Bobby

Thumbs up

Re: opojare.com, a site about cars

That's really good.
Could you tell me how you put the search bar at the top of the page?

Thumbs up

Re: opojare.com, a site about cars

gourav wrote:

That's really good.
Could you tell me how you put the search bar at the top of the page?

open 'header.php', create new div id and put 'search form' in there; just like this:
<div id="searchbar"><?php get_search_form() ?></div>   

then 'open user.css', create some style for searchbar's div. Like this one:
/* SEARCH BAR */
#searchbar  { float: right; overflow: hidden; margin: -20px 5px 0 0; }

Thumbs up