Viewing 15 posts - 1 through 15 (of 27 total)
  • Author
    Posts
  • cybernun Friend
    #176802

    Great template…kudos to Joomlart!
    However….

    Does a “responsive” template mean no slideshows?
    Am having difficulty finding information in the forum and in the documentation exactly how to make more than one image appear in slider position.

    I installed Ja Slideshow 2 on another page and it works but it will not span the page 800px…gets cut down.

    So. Anyone know where I can learn more about ‘slider” that does not slide? I must have a large slideshow on this site and even Yootheme’s Widgetkit slideshow (which works) but same thing. gets cut off in the slider position. There is no “slideshow” position. The answer I found in this forum about that was incomplete…could not understand where to put this in which css:

    <block name=”slideshow” type=”modules” style=”raw”>slideshow</block>

    Thanks all—:-*

    swissa Friend
    #451866

    <em>@cybernun 318200 wrote:</em><blockquote>
    Does a “responsive” template mean no slideshows?</blockquote>

    Seems like the boys @ JA don’t want to let you down so click here and then click on slideshow! No idea if it works on a ‘normal’ JA template but the slideshow lite as they call it can be had here!

    Could be worth a play no?

    cybernun Friend
    #451867

    Well, yes Swissa…worth a try! Will let you know…..:-*:-*:-*

    cybernun Friend
    #451870

    THIS IS THE BEST FORUM PERIOD.
    Yep, works. Wow. Who knew. Will mark as resolved except …

    the slider? Is it in fact just supposed to be a static image?

    swissa Friend
    #451872

    <em>@cybernun 318206 wrote:</em><blockquote>THIS IS THE BEST FORUM PERIOD.
    Yep, works. Wow. Who knew. Will mark as resolved except …

    the slider? Is it in fact just supposed to be a static image?</blockquote>

    Don’t worry. It does slide!

    <blockquote>

    Features:Display images from a folder. Includes auto-resized images, beautiful animation effects, and inline text-embeded descriptions. This module use css3 to enable animation effects and support responsive design

    Usage Instructions:

    • The module display can be enhanced by CSS overrides in the demo templates. You may have to customize CSS to get your desired effects.

    </blockquote>

    And on my test I’m running pictures with original size of 3000×1200 to get the quality – what is shown is up to 1600×900!


    1. Screen-Shot-2012-05-07-at-17.53.20
    cybernun Friend
    #451878

    You are referring to Slideshow Lite…yes, I know, it’s great.

    Sorry if I confused you…I meant, in the original Ja_Puresite demo layout, there is one image on HOME calling from a custom html mod. No way to make it anything else. I was just wondering if that was their intent? One static image or did I miss something somewhere? And thank you, Swissa, :-*:-* you are always so helpful.

    swissa Friend
    #451882

    <em>@cybernun 318215 wrote:</em><blockquote>You are referring to Slideshow Lite…yes, I know, it’s great.

    Sorry if I confused you…I meant, in the original Ja_Puresite demo layout, there is one image on HOME calling from a custom html mod. No way to make it anything else. I was just wondering if that was their intent? One static image or did I miss something somewhere? And thank you, Swissa, :-*:-* you are always so helpful.</blockquote>

    As always, you are very welcome!!

    I don’t have Puresite but if it’s a custom html then you’re stuck with a static image from that module. That was why I pointed you off to the download so that maybe you could use the same slideshow that works on one responsive site on another responsive template. And seeing as you can now add a slideshow position (from your other thread) hopefully, fingers, legs, eyes, crossed you should be able to insert slideshow lite there and it should work for you!! 😉

    Would love to know if it works – Wall is there too but I haven’t had to time to see if it will work on that! I reckon if it does this is going to be one of JA’s most downloaded extensions!! :p

    cybernun Friend
    #451883

    Whoops….yep images appear, nothing cut off thumbs all is well but ONE little problem. The large images have a percentage mask (deep grey) that only briefly disappears. I will try disabling Ja-Popup…not sure why this is happening….if you want me to PM details I will.

    swissa Friend
    #451884

    <em>@cybernun 318220 wrote:</em><blockquote>Whoops….yep images appear, nothing cut off thumbs all is well but ONE little problem. The large images have a percentage mask (deep grey) that only briefly disappears. I will try disabling Ja-Popup…not sure why this is happening….if you want me to PM details I will.</blockquote>

    It’s a mask in the css here – templates/ja_lens/css/mod_jaslideshowlite.css @ line 136 – DUH! :-[ Now who’s having a blonde moment! Not sure where the install of the slideshow lite put the css on Puresite but you have the idea! 😀

    .ja-ss-mask {
    background: url(../images/bg-mask.png);
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 19;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

    If you want you can just /* comment that whole section out */ 🙂

    cybernun Friend
    #451891

    OHkeedoakie…with you cheering me on, should get solved. Will go fiddle now….

    cybernun Friend
    #451894

    This is what is in modules/mod_jaslideshowlite/assets/mod_jaslideshowlite.css and it’s quite different:

    .ja-ss-mask {
    background: none;
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    -webkit-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
    -moz-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
    -ms-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
    -o-transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
    transition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
    }

    .ja-ss-mask.active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    }

    THEN AGAIN IT COULD BE THIS:

    /* Animations —*/

    /* Fading */
    .fade .ja-ss-item {
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    }

    .fade .ja-ss-item.curr {
    opacity: 1;
    }

    I think I will poke around in forums first and pray for a speedy answer! and I did unpublish Ja Popup just in case but nothing changed (sometimes it can create a conflict).

    cybernun Friend
    #451896

    Could it be the Framework (it says “Built upon JA’s robust JAT3 2 Framework” in the initial description) because on the Ja_Lens info it says, “This template DO NOT use JAT3 2 Framework.”

    Unable to find any reference to this issue so will have start playing with css. Rats a Roni. Hoped this would not take my entire day. Might have to go hunt for another responsive slideshow (even WidgetKit from YOOtools won’t fully open) so there are conflicts and generally speaking, these issues are often a jQuery conflict. Ja_Lens and Ja_Puresite use jQuery Masonry script. WAY over my head but its a new script so could just be buggy.

    Also…Ja_Slideshow Lite does not display as it does on the GORGEOUS Lens Demo. It just goes image to image as any slideshow would (except for the persistent dark mask). I probably need other extensions to make it look like it does on Ja_Lens Demo.

    So maybe it won’t work without serious hacking…. a developer I ain’t. Will give it a little more time but I may have to jump ship.

    :((:((:((:((

    swissa Friend
    #451898

    I’ll try and install a copy of Puresite later to play too – see if I can replicate what you’ve done. As you know I’m not JA so would never ask for a login but if you feel safe sending me the front end url I can see if I can locate the css. But only if you are comfortable doing this and only if you are sure that there is no access to the admin side. Better safe than sorry!

    cybernun Friend
    #451899

    SWISSA- no problem sending URL but I just disabled so let me reset and you can go look.
    You looking in Firebug?
    Will PM

    cybernun Friend
    #451901

    OK…PM’ed the poop to somewhere in Switzerland.

Viewing 15 posts - 1 through 15 (of 27 total)

This topic contains 27 replies, has 4 voices, and was last updated by  HeR0 12 years, 5 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum