Move login menu and search form

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
mrcs
Rank 0
Rank 0
Posts: 1
Joined: January 8th, 2008, 6:27 pm

Move login menu and search form

Post by mrcs »

Hi!

I'm wondering how to move the login menu and the search form to the bottom, looking somewhat like http://beagle-project.org/Main_Page. Since my coding skills are less than mediocre, any help or hints are appreciated!

Thank you for this great skin!

/marcus
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Move login menu and search form

Post by Paul »

You can open GuMax.php file, find the section:

Code: Select all

        <!-- Login -->
        <div id="gumax-p-login">
            <ul>
              <?php $lastkey = end(array_keys($this->data['personal_urls'])) ?>
              <?php foreach($this->data['personal_urls'] as $key => $item) if($this->data['loggedin']==1) {
              ?><li id="gumax-pt-<?php echo Sanitizer::escapeId($key) ?>"><a href="<?php
               echo htmlspecialchars($item['href']) ?>"<?php
              if(!empty($item['class'])) { ?> class="<?php
               echo htmlspecialchars($item['class']) ?>"<?php } ?>><?php
               echo htmlspecialchars($item['text']) ?></a>
               <?php // if($key != $lastkey) echo "|" ?></li>
             <?php } ?>
            </ul>
        </div>
        <!-- end of Login -->
Then, you need to customize it in the CSS accordingly.
User avatar
imike24
Rank 0
Rank 0
Posts: 1
Joined: March 3rd, 2008, 12:20 pm

Re: Move login menu and search form

Post by imike24 »

Thank :). This is what I am looking for :)
[FONT=arial]__________________
devices exercises patches pills finance weightloss fitness food gaming aging weightloss
[/FONT]
User avatar
krishna
Rank 1
Rank 1
Posts: 9
Joined: April 18th, 2008, 2:11 pm

Re: Move login menu and search form

Post by krishna »

I found and moved the code in the php--but the location on teh website doesn't change.

What needs to change in the css file (I am assuming I should be looking in gumax_template.css)?

I am new to php & css; so don't really understand any of the nuances as of yet.

Thanks

Krishna
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Move login menu and search form

Post by Paul »

Yes, you need to update tags with that section in gumax_template.css.
Post Reply