JUser ERROR and Change empty space en Header and other q.

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Nov 19, 2012 12:15 pm
Reply with quote
Report this post
Hello, I have four questions. The first, by certain articles when this message appears on the top, JUser :: _load: Unable to load user with ID: 42 is not a significant error, but annoying.

Second, I would like to reduce the space header, to occupy only the space occupied by my banner. I leave the web to throw a glance http://festprueba.starlitefestival.es

Third, I would like the Main Menu below the Header appear How I can do?

The fourth, is there any way to make the color scheme on this template can be Orange-Orange instead of Orange-Blue???

Thank you SO MUCH for reading
User avatar
Fresh Boarder

GK User
Mon Nov 19, 2012 1:30 pm
Reply with quote
Report this post
avanzait wrote:Hello, I have four questions. The first, by certain articles when this message appears on the top, JUser :: _load: Unable to load user with ID: 42 is not a significant error, but annoying.


I thought this was already fixed :huh:

Well please check if you super user id was changed and it's different from userid 42.
If it's different you can change it to 42 using phpMyAdmin.

1. Open your Joomla database using PHPMyadmin tool.
2. Open "jos_users" table,
3. Find record with "Super User" name and click on edit icon,
4. Change Super User id value to 42 and click on "Go" button,
5. Open "jos_user_usergroup_map" table.
6. Find the record with "group_id" value 8, change "user_id" value to 42, then click on "Go" button,
7. Logout and login again.


avanzait wrote:Second, I would like to reduce the space header, to occupy only the space occupied by my banner. I leave the web to throw a glance http://festprueba.starlitefestival.es


Please enable the use of css override on template details > advanced settings and them add this code on ../css/override.css file.

Code: Select all
#gkHeaderTop {margin: 0!important;}


avanzait wrote:Third, I would like the Main Menu below the Header appear How I can do?


You can open ../gk_fest/layouts/default.php and move this fragment:

Code: Select all
<section id="gkPageTop">                          
       <div>
          <?php if($this->API->get('show_menu', 1)) : ?>
          <div id="gkMainMenu">
             <?php
                $this->mainmenu->loadMenu($this->API->get('menu_name','mainmenu'));
                 $this->mainmenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
             ?>   
         </div>
         
         <div id="gkMobileMenu">
            <?php echo JText::_('TPL_GK_LANG_MOBILE_MENU'); ?>
            <select onChange="window.location.href=this.value;">
            <?php
                $this->mobilemenu->loadMenu($this->API->get('menu_name','mainmenu'));
                $this->mobilemenu->genMenu($this->API->get('startlevel', 0), $this->API->get('endlevel',-1));
            ?>
            </select>
         </div>
         <?php endif; ?>
         
         <?php if($this->API->modules('social')) : ?>
         <div id="gkSocial">
            <?php if($this->API->modules('social')) : ?>
               <jdoc:include type="modules" name="social" style="<?php echo $this->module_styles['social']; ?>" />
            <?php endif; ?>
         </div>
         <?php endif; ?>
      </div>
   </section>


place it after gkHeaderTop section.

avanzait wrote:The fourth, is there any way to make the color scheme on this template can be Orange-Orange instead of Orange-Blue???


Yes you can change colors on ../css/style1.css file.
User avatar
Platinum Boarder


cron