Support for SermonSpeaker 5.x is in bugfix mode only, the same as it is for Joomla 3.10.
I will not add any new features to this releases.
Please upgrade to SermonSpeaker 6.x and Joomla 4.x, which is better anyway.
I will not add any new features to this releases.
Please upgrade to SermonSpeaker 6.x and Joomla 4.x, which is better anyway.
Content slider for sermons
- Thomas Hunziker
-
- Offline
- Administrator
-
Less
More
31 Mar 2016 22:28 #5998
by Thomas Hunziker
Replied by Thomas Hunziker on topic Content slider for sermons
Works fine for me. See
sermon.hopto.org/
(my testing server).
Maybe check with the Protostar template. It may well be that your template doesn't support the Bootstrap Carousels.
For the horizontal layout adjustments you would have to calculate the width somehow. I'd suggest using percentages instead of pixels. That's a bit simple to work with. Then just divide 100% / sermon count and you get the width of each individual sermon.
However it's best done using the template CSS anyway. I wouldn't use inline styles. They are ugly and hard to maintain.
Maybe check with the Protostar template. It may well be that your template doesn't support the Bootstrap Carousels.
For the horizontal layout adjustments you would have to calculate the width somehow. I'd suggest using percentages instead of pixels. That's a bit simple to work with. Then just divide 100% / sermon count and you get the width of each individual sermon.
However it's best done using the template CSS anyway. I wouldn't use inline styles. They are ugly and hard to maintain.
Please Log in or Create an account to join the conversation.
31 Mar 2016 22:38 #5999
by antt7
Replied by antt7 on topic Content slider for sermons
Like in your site works for me too.
See in attachment, what i'l like.
See in attachment, what i'l like.
Please Log in or Create an account to join the conversation.
31 Mar 2016 22:43 #6000
by antt7
Replied by antt7 on topic Content slider for sermons
I do not know how create css style in this case.Thomas Hunziker wrote: However it's best done using the template CSS anyway. I wouldn't use inline styles. They are ugly and hard to maintain.
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
-
- Offline
- Administrator
-
31 Mar 2016 22:56 #6001
by Thomas Hunziker
Replied by Thomas Hunziker on topic Content slider for sermons
If you need multiple sermons per slide, then it gets a lot more complicated as you need to figure out first how many slides you're going to create and then group the sermons by the amount per slide you need (eg 3 per slide). You also need to decide what you do when there aren't enough sermons to fill up the slide.
That's not something I can do for you as it would need additional parameters which I don't want to introduce to the module. One can do that with own alternate layouts anyway.
The very simplest thing for the horizontal layout CSS would be:
This makes the sermon divs behave similar to a span and thus stay on the same row. You can then add margin, paddings and the like as well.
Put that into your template CSS file and it should work.
That's not something I can do for you as it would need additional parameters which I don't want to introduce to the module. One can do that with own alternate layouts anyway.
The very simplest thing for the horizontal layout CSS would be:
Code:
[class^=latestsermons_entry] {
display: inline-block;
}
Put that into your template CSS file and it should work.
The following user(s) said Thank You: antt7
Please Log in or Create an account to join the conversation.
31 Mar 2016 23:08 #6002
by antt7
In any case, thank you very much.
Replied by antt7 on topic Content slider for sermons
I thought it would be easier to use a code from module BT Content slider, and make some changes. It is free.Thomas Hunziker wrote: That's not something I can do for you as it would need additional parameters which I don't want to introduce to the module. One can do that with own alternate layouts anyway.
In any case, thank you very much.
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
-
- Offline
- Administrator
-
31 Mar 2016 23:21 #6003
by Thomas Hunziker
Replied by Thomas Hunziker on topic Content slider for sermons
If I copy the BT one, it would be a new module which I have to maintain. I don't really want to add another module to the portfolio. Adding a simple layout to an existing module is fine.
The following user(s) said Thank You: antt7
Please Log in or Create an account to join the conversation.
Time to create page: 0.335 seconds