Quote Originally Posted by 720moto View Post

As you can see on the upper right side of the page there is a HOME and Log In link and also the SEARCH bar is in the middle of the page, how do I move it to the left side of the page or remove it altogether?

Thanks,
Rudy
you should be looking in your tpl_header.php file , in your template/common folder.

looks like you have tried to move it to the right by placing it after the links for home page. also it looks like you have created a new div called navMainLinks , I may be wrong but I dont see this on my fresh install of Cherry_zen

the search part of that bar is
Code:
<div id="navMainSearch">
          <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
        </div>
the default setup for that whole section is between the comments <!--bof-navigation display-->
and
<!--eof-navigation display-->

you could download a fresh copy of the template and copy out that part and paster it into your modified tpl_header to try and remedy things.

Hope that helps.