changing logo place

GK User
Fri Feb 18, 2011 9:20 am
how to make logo uper main menu in joomla 1.6 ... like this?

99-joomla-15/75884-custom-logo-on-top-and-extra-right-side-module.html

i have captcha key already.. but i dun noe where its modul for captcha key... thanks :D


my website link...

www.bingooption.com



:lol: and how i can make the logo more bigger... thanks...


Untitled.png
User avatar
Fresh Boarder

GK User
Fri Feb 18, 2011 7:13 pm
i really don't understand what you want to do...
User avatar
Platinum Boarder

GK User
Fri Feb 18, 2011 7:39 pm
how to make logo uper main menu in joomla 1.6 ... like this?


You can do this exactly the same link in link posted by you ... it is the same template.

The captcha key you need to paste in captcha plugin admin -> manage -> plugins.
User avatar
Platinum Boarder

GK User
Sat Feb 19, 2011 3:13 am
Sorry if my english bad.... ummm... how i can make logo penguinMail like this in joomla 1.6 ?


custom-penguimmail.png


coz the logo now under main menu...



and how i can make the logo more bigger

see at the black one arrow thanks....

Untitled_2011-02-19.png
User avatar
Fresh Boarder

GK User
Sun Feb 20, 2011 1:29 pm
Hi,

I would like to change the position of the logo on the penguinMail v1.6 template like the image you show in this thread.

The link that is posted in this thread for the mod actually is for penguinMail v1.5 which is nothing like what the code looks like in 1.6...

This kind of cross pollination between versions should be prevented, as it's not only confusing but could cause major hassles for those that don't know much about editing code, so please provide us with a proper howTo to get the job done right.

Thanks in advance.
User avatar
Junior Boarder

GK User
Sun Feb 20, 2011 2:11 pm
the code is offcause not the same in 1.6 as 1.5. that's one of the main reason why migration from 1.5 to 1.6 aint that easy...

this is a customization, but maybe seichinha is sweet and make a guide for 1.6 also...
User avatar
Platinum Boarder

GK User
Mon Feb 21, 2011 12:57 pm
explodedk wrote:the code is offcause not the same in 1.6 as 1.5. that's one of the main reason why migration from 1.5 to 1.6 aint that easy...

this is a customization, but maybe seichinha is sweet and make a guide for 1.6 also...


thanks he5...

how about making logos more bigger ... its same ?
User avatar
Fresh Boarder

GK User
Mon Feb 21, 2011 1:07 pm
logo in that place should be easy to make bigger with css changes

Code: Select all
#gkLogo { height: 95px; margin: 35px 0 0; line-height: 100%; }


this define the height of the logo, and adding width:500px etc will define width of the logo
User avatar
Platinum Boarder

GK User
Tue Mar 29, 2011 7:34 am
Try this.

BACKUP the modified files!!

Step 1:
Open ../layouts/blocks/nav.php

Change the order of logo and mainmenu! Find the code below.
Code: Select all
<?php if($this->getParam('logo_type', 'image') == 'image') : ?>

<h1 id="gkLogo">

   <a href="./">

   <img src="<?php echo $logo_image; ?>" alt="<?php echo $this->getPageName(); ?>" />

   </a>

</h1>

<?php elseif($this->getParam('logo_type', 'image') == 'text') : ?>

<h1 id="gkLogo" class="text">

   <a href="./">

      <?php if($this->getParam('logo_text', '') != '') : ?><span class="gkLogoText"><?php echo $this->getParam('logo_text', ''); ?></span><?php endif; ?>

      <?php if($this->getParam('logo_slogan', '') != '') : ?><span class="gkLogoSlogan"><?php echo $this->getParam('logo_slogan', ''); ?></span><?php endif; ?>

   </a>

</h1>

<?php endif; ?>


Move it above the
Code: Select all
<div id="gkPageTop" class="gkMain <?php echo $this->generatePadding('gkPageTop'); ?>">


Step 2:

Open override.css and put in the code:

Code: Select all
#gkBg { background: #ac3400 url('../images/style2/glow.jpg') no-repeat 50% 0; margin-top: -35px;}
#gkLogo { height: 95px; margin: 35px 0 -15px ; line-height: 100%; padding-top: 15px;  }
#gkHeaderModule { margin-top: 80px; }


Step 3:

Enable the use of override.css in template's options.

If nothing happens try to disable the option CSS compression in template's options and re-enabled
User avatar
Expert Boarder


cron