Page 1 of 1

change searchbox position

Posted: January 18th, 2012, 12:32 am
by tut
Hi

how do I change searchbox position. I try it, however, everytime I do that my site doesn t load.

actual position

Image

wanted position

Image

Please advise.

Re: change searchbox position

Posted: January 19th, 2012, 12:02 am
by Paul
You need basic php knowledge to do this...

In GuMax.php and find:

Code: Select all

<?php $this->searchBox(); ?>
Move it to here, you will have something like this:

Code: Select all

<?php $this->contentBox(); ?>
<?php $this->searchBox(); ?>
Then in gumax_template.css and tweak the position.

Re: change searchbox position

Posted: January 26th, 2012, 10:33 am
by tut
I did search,

Code: Select all

<?php $this->contentBox(); ?>
is nowhere to find in gumax.php

I found the similiar and they are following

Code: Select all

<?php $this->articlePictureBox(); ?>

	<?php $this->contentActionBox(); ?>

	<?php $this->siteContent(); ?>
Pls advise

Re: change searchbox position

Posted: January 27th, 2012, 5:56 pm
by Paul
For your case, it should be

Code: Select all

<?php $this->siteContent(); ?>
Put search box after that...