-
AuthorPosts
-
Ninja Lead Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 18, 2014 at 7:46 am #539321<blockquote>Do you enabled the Autoplay feature on my site?
I do not want this feature enabled because I want to show only one image (not slide).</blockquote>Yes, but it seems you did disable again, no slide now.
<blockquote>Maybe you did not notice my question. I want to show the slideshow module on small screen (tablet and mobile) but it does resize of images according to the size of the screen. This is the question</blockquote>
I should have clarified clearer. As JA Slideshow module is not supported by default in JA University template, I just helped you to make it work with desktop version, not tablet and mobile. To have JA Slideshow module responsive in tablet and mobile, it needs heavy customization which is beyond scope of JA support.
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
June 23, 2014 at 2:41 pm #539878<em>@Ninja Lead 432790 wrote:</em><blockquote>Yes, but it seems you did disable again, no slide now.</blockquote>
Because I want this setting for no.Why is it possible in JA Slideshow Lite module and not in JA Slideshow??
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 24, 2014 at 4:44 am #539955<blockquote>Why is it possible in JA Slideshow Lite module and not in JA Slideshow??</blockquote>
Because the html, js and css style differ in both modules.
I am afraid you will need to customize css style in JA Slideshow at your side, and it is beyond scope of JA support in this case.
conforturis Friendconforturis
- Join date:
- April 2010
- Posts:
- 256
- Downloads:
- 0
- Uploads:
- 58
- Thanks:
- 59
- Thanked:
- 7 times in 1 posts
June 24, 2014 at 4:44 pm #540046In module JA Slideshow Lite with Autoplay configured for No (as I want) why never change image every time we refresh the window (F5) like happens in JA Slideshow?
Is there any way to make it show diferent image every time refresh the window (F5)?If you have any way to do this I will use mudulo JA Slideshow Lite and I get solve the image resizing issue.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 25, 2014 at 5:57 am #540110In module JA Slideshow Lite could not support random load as JA Slideshow module.
If you want random load, you have to customize via the modules/mod_jaslideshowlite/assets/js/script.js file
Find and change this line:
curIdx: -1,
To:
curIdx: Math.floor((Math.random() * (jitems.length)) - 1),
Let me know if it helps.
1 user says Thank You to Ninja Lead for this useful post
April 15, 2015 at 11:27 pm #567131i have probem, how to change description location slide show lite?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 16, 2015 at 3:21 am #567150<em>@nutungilmu 468808 wrote:</em><blockquote>i have probem, how to change description location slide show lite?</blockquote>
Go to JA Slideshow Lite module from backend site and you click edit button on that and change Description with each item slide show lite, see the screenshot
April 17, 2015 at 3:24 am #567332Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 17, 2015 at 8:39 am #567386<em>@nutungilmu 469051 wrote:</em><blockquote> I want more up/top or change position</blockquote>
Which JA University template and T3 version are you working on?
1 user says Thank You to Ninja Lead for this useful post
April 18, 2015 at 12:50 am #567451<em>@Ninja Lead 469114 wrote:</em><blockquote>Which JA University template and T3 version are you working on?</blockquote>
Name: Ja University T3
Version: 1.1.2
Released Date: 24 Oct 2014Name: T3 Framework
Version: 2.4.0
Released Date: Oct 20, 2014Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 20, 2015 at 3:44 am #567551<em>@nutungilmu 469196 wrote:</em><blockquote>Name: Ja University T3
Version: 1.1.2
Released Date: 24 Oct 2014Name: T3 Framework
Version: 2.4.0
Released Date: Oct 20, 2014</blockquote>
@nutungilmu: Here is my solution for your questionOpen templates/ja_university_t3/css/mod_jaslideshowlite.css file
find and see
@media screen and (min-width: 992px) {
.ja-ss-desc {
bottom: 122px;
}
}
@media screen and (min-width: 992px) {
.ja-ss-btns {
bottom: 82px;
}
}
to
@media screen and (min-width: 992px) {
.ja-ss-desc {
bottom: 155px;
}
}
@media screen and (min-width: 992px) {
.ja-ss-btns {
bottom: 115px;
}
}
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 20, 2015 at 3:44 am #732661<em>@nutungilmu 469196 wrote:</em><blockquote>Name: Ja University T3
Version: 1.1.2
Released Date: 24 Oct 2014Name: T3 Framework
Version: 2.4.0
Released Date: Oct 20, 2014</blockquote>
@nutungilmu: Here is my solution for your questionOpen templates/ja_university_t3/css/mod_jaslideshowlite.css file
find and see
@media screen and (min-width: 992px) {
.ja-ss-desc {
bottom: 122px;
}
}
@media screen and (min-width: 992px) {
.ja-ss-btns {
bottom: 82px;
}
}
to
@media screen and (min-width: 992px) {
.ja-ss-desc {
bottom: 155px;
}
}
@media screen and (min-width: 992px) {
.ja-ss-btns {
bottom: 115px;
}
}
AuthorPostsThis topic contains 27 replies, has 4 voices, and was last updated by Ninja Lead 9 years, 7 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum