Hi hennessyduk !
You can do following way :
open template_css.css file find 1st code section at about line 1064 :
#ja-mainnav {
padding: 0 10px;
position: absolute;
bottom: 0;
left: 0;
}
change to :
#ja-mainnav {
padding: 0 10px;
position: absolute;
bottom: 0;
right: 0;
}
find 2nd code section :
#ja-search {
border: 1px solid #E4E4E4;
border-bottom: none;
padding-left: 25px;
background: url(../images/icon-search.gif) no-repeat 7px 50% #F7F7F7;
position: absolute;
bottom: 0;
right: 10px;
}
change to :
#ja-search {
border: 1px solid #E4E4E4;
border-bottom: none;
padding-left: 25px;
background: url(../images/icon-search.gif) no-repeat 7px 50% #F7F7F7;
position: absolute;
bottom: 0;
left: 10px;
}