0
Welcome Guest! Login
0 items Join Now

unseen logo in ie6

    • Daneel's Avatar
    • Daneel
    • Newbie
    • Posts: 6
    • Thanks: 0

    unseen logo in ie6

    Posted 17 years 5 months ago
    • Hi,

      I use Fire template and ran into a situation that logo didn't show up in IE 6, but FF and IE7 go well. Script in question from index.php are
      ---
      ...
      <div id="header">
      <a href="index.php"><span id="logo"></span></a>
      <?php if (mosCountModules( 'user1' )) { ?>
      <?php mosLoadModules ( 'user1',-1); ?>
      <?php } ?>

      <div id="tabarea">
      ...
      ---
      ,where module position is newly inserted and no changes in css regarding span tag. Any tips would be appreciated.

      Thanks
    • Dan L's Avatar
    • Dan L
    • Elite Rocketeer
    • Posts: 1453
    • Thanks: 0

    Re: unseen logo in ie6

    Posted 17 years 5 months ago
    • I expect the module is overlapping the logo. Do you not need it positioned? You should wrap it in it's own DIV then use CSS to position.
    • Toolbox Digital | Dribbble | Forrst
    • Daneel's Avatar
    • Daneel
    • Newbie
    • Posts: 6
    • Thanks: 0

    Re: unseen logo in ie6

    Posted 17 years 5 months ago
    • I needed to put joomfish languageselection, but couldn't find position like top-top in madeyourweb template. That's why I positioned another module. I gave it a try in as follows,
      div#lang_select {
      right: 10px;
      height: 30px;
      width: 100%;
      background: transparent;
      }
      in template_css.css and
      <div id="header">
      <a href="index.php"><span id="logo"></span></a>
      <?php if (mosCountModules( 'user1' )) { ?>
      <div id="lang_select">
      <?php mosLoadModules ( 'user1',-1); ?>
      </div>
      <?php } ?>
      in index.php.

      Seems not work. While digging this much, I found css of JoomFish language selection module has priority over template_css.css, so inserted 'background: transparent;' into jfls css, but failed. Site is www.artferry.net and JoomFish installed is 1.8.
    • Dan L's Avatar
    • Dan L
    • Elite Rocketeer
    • Posts: 1453
    • Thanks: 0

    Re: unseen logo in ie6

    Posted 17 years 5 months ago
    • right: 10px;

      Well, that won't work for a start because the DIV is not positioned. You want it 10px from the right, yes? Try floating it and setting a margin. Failing that, try making the header:
      position: relative;

      ...then in #lang_select:
      div#lang_select {
      position:absolute;
      top:10px;
      right: 10px;
      height: 30px;
      width:20px;
      }

      Just use left and right to position it where you want, and size it appropriately with width & height.
    • Toolbox Digital | Dribbble | Forrst
    • Daneel's Avatar
    • Daneel
    • Newbie
    • Posts: 6
    • Thanks: 0

    Re: unseen logo in ie6

    Posted 17 years 5 months ago
    • I tried them, but seem not work for my case, Thanks, though. Some blogs say it is related with IE double margin bug, but I couldn't follow them. In checking css validation, some errors came out, which might be the cause. So I will fix them first before logo stuff..

Time to create page: 0.053 seconds