Hi !
You open template.css file in templates/ja_mesolite/css folder , find following code section at about line 1087 :
#ja-search {
background:transparent url(../images/icon-search.png) no-repeat scroll 5px 0;
float:left;
height:35px;
overflow:hidden;
width:190px;
}
change to :
#ja-search {
background:transparent url(../images/icon-search.png) no-repeat scroll 5px 0;
float:right;
height:35px;
overflow:hidden;
width:190px;
}
continue , find following code section at about line 741 :
#ja-mainnav {
background:transparent url(../images/dot-dark.gif) repeat-y scroll left center;
float:right;
height:35px;
width:760px;
}
change to :
#ja-mainnav {
background:transparent url(../images/dot-dark.gif) repeat-y scroll left center;
float:left;
height:35px;
width:760px;
}