change searchbox position

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
tut
Rank 3
Rank 3
Posts: 18
Joined: November 22nd, 2011, 4:29 pm

change searchbox position

Post 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.
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: change searchbox position

Post 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.
User avatar
tut
Rank 3
Rank 3
Posts: 18
Joined: November 22nd, 2011, 4:29 pm

Re: change searchbox position

Post 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
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: change searchbox position

Post by Paul »

For your case, it should be

Code: Select all

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