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

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.
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.