Hi all,
I would like my News Summary page to have alternating background colours for each summary, in the same way as the comments in the CMSMS Blog - http://blog.cmsmadesimple.org/2008/12/04/cms-made-simple-151-san-juan/
Any help would be gratefully appreciated!
[SOLVED] How to alternate row colours in News module
-
- Forum Members
- Posts: 31
- Joined: Thu Oct 04, 2007 9:23 am
[SOLVED] How to alternate row colours in News module
Last edited by rhysdavies on Mon Jan 12, 2009 9:47 am, edited 1 time in total.
-
- Power Poster
- Posts: 424
- Joined: Sat Feb 02, 2008 12:42 am
- Location: USA
Re: How to alternate row colours in News module
I've used this javascript method in the past that worked well for me:
http://www.alistapart.com/articles/zebratables/
http://www.alistapart.com/articles/zebratables/
Take a penny, leave a penny.
Re: How to alternate row colours in News module
You can change the News-template to....
In the stylesheet you can then style....
{foreach from=$items item=entry key=j}
{if $j % 2 == 1}
{else}
{/if}
Ronny.NewsSummary {
margin:5px 0px;
}
.NewsSummary_odd {
margin:5px 0px;
background: #99B3E5;
}
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: How to alternate row colours in News module
See the smarty {cycle} plugin.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
-
- Forum Members
- Posts: 31
- Joined: Thu Oct 04, 2007 9:23 am
Re: How to alternate row colours in News module
Where's the {cycle } plugin? I've looked all around and I must be very blind or very stupid!
-
- Forum Members
- Posts: 31
- Joined: Thu Oct 04, 2007 9:23 am
Re: How to alternate row colours in News module
I've managed it! Thank-you for your guidance especially with thte cycle plugin which I managed to find eventually, and to this thread http://forum.cmsmadesimple.org/index.php/topic,6159.0.html for tips on implementation!