No space between module on IE

Community fouces Joomla template to build a music magazine website with JomSocial support.
GK User
Sun Jun 09, 2013 2:39 pm
Hi ;)

With IE , We see NO SPACES between 'header1 position' and 'Left_top, Top, Right_top'

If its possible, i would like A SPACE between these module :)

With Chrome its ok :dry:

Here's the link : http://fb-joomla.info/projets/

See the pics;
Image
User avatar
Junior Boarder

teitbite
Mon Jun 10, 2013 8:47 am
Hi

Is this problem fixed ? I can see space when I watch it in my IE. Is it a single page ? Can You please show me an exact url ?
User avatar
Moderator

GK User
Mon Jun 10, 2013 10:27 pm
No not fixed but its ok i made an empty personalised module between header 1 and top.

With microsoft, its always problem... nothing easy lol

THX :)

Real url : http://lhgmq.ca
The other one is my test web site ;)
User avatar
Junior Boarder

teitbite
Tue Jun 11, 2013 9:35 am
Hi

You may try to edit /layout/default.php and find code like:

Code: Select all
<div id="gkHeader" class="gkMain">
<div id="gkHeaderModule1" style="width:65%">
<div id="gkHeaderModule2" style="width:33%">
</div>


than add

Code: Select all
<div class="clear"></div>


after inner divs:

Code: Select all
<div id="gkHeaderModule1" style="width:65%">
<div id="gkHeaderModule2" style="width:33%">
User avatar
Moderator

GK User
Tue Jun 11, 2013 11:39 pm
are you sure its on "default.php. Cause nothing like that into the folder :(
User avatar
Junior Boarder

teitbite
Thu Jun 13, 2013 10:42 pm
Hi

Sorry. I've looked into wrong template. It's in /layout/blocks/header.php

This part
Code: Select all
<?php if($this->modules('header1 + header2')) : ?>
<div id="gkHeader" class="gkMain">
   <?php if($this->modules('header1')) : ?>
   <div id="gkHeaderModule1" <?php if($this->getParam("cwidth_position", '') == 'style') echo "style=width:".$gkHeaderModule1;  ?>>
      <jdoc:include type="modules" name="header1" style="<?php echo $this->module_styles['header1']; ?>" />
   </div>
   <?php endif; ?>
   
   <?php if($this->modules('header2')) : ?>
   <div id="gkHeaderModule2" <?php if($this->getParam("cwidth_position", '') == 'style') echo "style=width:".$gkHeaderModule2;  ?>>
      <jdoc:include type="modules" name="header2" style="<?php echo $this->module_styles['header2']; ?>" />
   </div>
   <?php endif; ?>
</div>
<?php endif; ?>


try add this layer right before ending tag. So it should looks like:

Code: Select all
<?php if($this->modules('header1 + header2')) : ?>
<div id="gkHeader" class="gkMain">
   <?php if($this->modules('header1')) : ?>
   <div id="gkHeaderModule1" <?php if($this->getParam("cwidth_position", '') == 'style') echo "style=width:".$gkHeaderModule1;  ?>>
      <jdoc:include type="modules" name="header1" style="<?php echo $this->module_styles['header1']; ?>" />
   </div>
   <?php endif; ?>
   
   <?php if($this->modules('header2')) : ?>
   <div id="gkHeaderModule2" <?php if($this->getParam("cwidth_position", '') == 'style') echo "style=width:".$gkHeaderModule2;  ?>>
      <jdoc:include type="modules" name="header2" style="<?php echo $this->module_styles['header2']; ?>" />
   </div>
   <?php endif; ?>
        <div class="clear"></div>
</div>
<?php endif; ?>
User avatar
Moderator

GK User
Fri Jun 14, 2013 2:04 am
don't work :(

i forgot to told you, my version of IE its 10...just in case
User avatar
Junior Boarder

teitbite
Fri Jun 14, 2013 12:02 pm
Hi

Ok. Try maybe adding this to css:

Code: Select all
#gkHeader {
display: block;
padding: 0 0 18px 0;
}
User avatar
Moderator

GK User
Fri Jun 14, 2013 9:40 pm
BINGO!!!

Thx a lot...great job, great support...i love you loll

:P
User avatar
Junior Boarder


cron
Remember me
Register New Account
If you are old Gavick user, click HERE for steps to retrieve your account.