0
Welcome Guest! Login
0 items Join Now

Rokslide not working w/ IE7 in the rockettheme demo?

  • Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 7 months ago
    • Savage Man, My elemental site was all messed up in IE7 and I never suspected the Rokslide module. That fix worked.
      Thanks very much.
    • obisi's Avatar
    • obisi
    • Hero Rocketeer
    • Posts: 296
    • Thanks: 0

    Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 7 months ago
    • James S!

      FOr those of us using templates such as CHromotophore where rokslide is built-in and still having same IE problem, how do we resolve this? I don't have a mod_rokslide to edit.

      PLs see my site at www.myriversstate.com/rsg/  ; wherein the tabs are missing and the content overlapping.

      I am on IE7 and J1.5

      thx

      P.S. Things work fine with FFx
  • Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 7 months ago
    • You would edit the rokslidestrip.js file in the template's /js folder.d
    • James Spencer / Developer & Support / Hull, UK
    • obisi's Avatar
    • obisi
    • Hero Rocketeer
    • Posts: 296
    • Thanks: 0

    Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 7 months ago
    • James --

      I've pulled up rokslidestrip.js and it is nothing close to the code you asked that be modify to make IE7 behave properly. The content of this file are written in one line of code (no separated line codes) and appeared jumbled up.

      Also, I did a search for duration:1000 and $params and they both returned nothing.

      Would you say I have the wrong file or the said file is simply corrupted as it should be the same as yu implied here with when rokslider used to be a module? But if it is, why then does it work in FF? Uum

      I got this file rokslidestrip.js from path templates/js folder. I do not have a folder named folder.d

      Your advice and help are appreciated.
    • Revive's Avatar
    • Revive
    • Sr. Rocketeer
    • Posts: 172
    • Thanks: 0

    Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 7 months ago
    • Hey James,..

      I have a question along these same lines.. using Chromatophore that a client provided and they don't want the RokSlide, they want to put other content into those module positions.. do you have a code snippet that would replace the existing built in code the the Advert 1-3 modules positions??

      Much Thanks!
  • Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 7 months ago
    • There shouldn't actually be a problem with Chromatophore. Download the template again and upload/overwrite the rt_tabmodules.php file.
    • James Spencer / Developer & Support / Hull, UK
    • Revive's Avatar
    • Revive
    • Sr. Rocketeer
    • Posts: 172
    • Thanks: 0

    Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 7 months ago
    • Hey James,..

      No, there's no problem with Chromatophore.. but they want me to use the Advert positions as static content modules, not the rokslide that is built into the template.. any thoughts?? Code snippets?? :D

      Thanks again!!
  • Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 6 months ago
    • Revive's Avatar
    • Revive
    • Sr. Rocketeer
    • Posts: 172
    • Thanks: 0

    Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 6 months ago
    • Alas, James...!! I have a solution..

      But I cannot see it as my membership just recently expired.. and, to make it more difficult, I'm out of my home country and the co. won't renew it until i return!! AAAAHhhhhh.... :D , ok, so I'm not really going that crazy about it.. but is there any help or code snippet you can provide here to help me with this until I return stateside?

      Thank you!!
  • Re: Rokslide not working w/ IE7 in the rockettheme demo?

    Posted 16 years 6 months ago
    • James S! wrote:
      Joomla 1.0

      1. Open index.php

      2. Find
      <?php if ($show_moduleslider=="true" and (mosCountModules('user7') or mosCountModules('user8') 
      or mosCountModules('user9') or mosCountModules('user10') or mosCountModules('user11'))) : ?>
                <div id="moduleslider-size">
                     <?php displayTabs(); ?>
                </div>
           <?php endif; ?>

      3. Change to
      <?php if (mosCountModules('user7') or mosCountModules('user8') or mosCountModules('user9') or mosCountModules('user10')) : ?>
           <div id="moduleslide-size">
                <div id="slidemodules" class="spacer<?php echo $slidemodules_width; ?>">
           <?php if (mosCountModules('user7')) : ?>
                <div class="block">
                     <?php mosLoadModules('user7', -3); ?>
                </div>
           <?php endif; ?>
           <?php if (mosCountModules('user8')) : ?>
                <div class="block">
                     <?php mosLoadModules('user8', -3); ?>
                </div>
           <?php endif; ?>
           <?php if (mosCountModules('user9')) : ?>
                <div class="block">
                     <?php mosLoadModules('user9', -3); ?>
                </div>
           <?php endif; ?>
                <?php if (mosCountModules('user10')) : ?>
                     <div class="block">
                          <?php mosLoadModules('user10', -3); ?>
                     </div>
                <?php endif; ?>
                </div>
           </div>
      <?php endif; ?>

      4. Open rt_utils.php

      5. Find
      $bottommods_count = ($this->countModules('user3')>0) + ($this->countModules('user4')>0) + ($this->countModules('user5')>0) + ($this->countModules('user6')>0);
      $bottommods_width = $bottommods_count > 0 ? ' w' . floor(99 / $bottommods_count) : '';

      6. Below, add
      $slidemodules_count = ($this->countModules('user7')>0) + ($this->countModules('user8')>0) + ($this->countModules('user9')>0) + ($this->countModules('user10')>0);
      $slidemodules_width = $slidemodules_count > 0 ? ' w' . floor(99 / $slidemodules_count) : '';

      Joomla 1.5

      1. Open index.php

      2. Find
      <?php if ($show_moduleslider=="true" and ($this->countModules('user7') or $this->countModules('user8') 
      or $this->countModules('user9') or $this->countModules('user10') or $this->countModules('user11'))) : ?>
           <div id="moduleslider-size">
                <?php displayTabs($this); ?>
           </div>
      <?php endif; ?>

      3. Change to
      <?php if ($this->countModules('user7') or $this->countModules('user8') or $this->countModules('user9') or $this->countModules('user10')) : ?>
           <div id="moduleslide-size">
                <div id="slidemodules" class="spacer<?php echo $slidemodules_width; ?>">
           <?php if ($this->countModules('user7')) : ?>
                <div class="block">
                     <jdoc:include type="modules" name="user7" style="rounded" />
                </div>
           <?php endif; ?>
           <?php if ($this->countModules('user8')) : ?>
                <div class="block">
                     <jdoc:include type="modules" name="user8" style="rounded" />
                </div>
           <?php endif; ?>
           <?php if ($this->countModules('user9')) : ?>
                <div class="block">
                     <jdoc:include type="modules" name="user9" style="rounded" />
                </div>
           <?php endif; ?>
                <?php if ($this->countModules('user10')) : ?>
                     <div class="block">
                          <jdoc:include type="modules" name="user10" style="rounded" />
                     </div>
                <?php endif; ?>
                </div>
           </div>
      <?php endif; ?>

      4. Open rt_utils.php

      5. Find
      $bottommods_count = ($this->countModules('user3')>0) + ($this->countModules('user4')>0) + ($this->countModules('user5')>0) + ($this->countModules('user6')>0);
      $bottommods_width = $bottommods_count > 0 ? ' w' . floor(99 / $bottommods_count) : '';

      6. Below, add
      $slidemodules_count = ($this->countModules('user7')>0) + ($this->countModules('user8')>0) + ($this->countModules('user9')>0) + ($this->countModules('user10')>0);
      $slidemodules_width = $slidemodules_count > 0 ? ' w' . floor(99 / $slidemodules_count) : '';
    • James Spencer / Developer & Support / Hull, UK

Time to create page: 0.082 seconds