Hello,
This is for a simple thumbnail gallery sorted yearly and using the {nth} plugin to get rid of the margin-right on every fourth thumbnail so it aligns properly.
The problem is I want it to do it only for each year, the way it is now its ignoring the year and continuing to apply it to every forth entry(thumbnail), I understand why its doing it but is there any way or ideas to make it work how I’d like?
<ul class="artwork">
{exp:nth class='class="last"' interval="4"}
{exp:weblog:entries weblog="artwork"}
{date_heading display="yearly"}
<h2>{entry_date format="%Y"}</h2>
<p>{/date_heading}<br />
<li {nth}><br />
<a href="/artwork/{url_title}">_ {artwork-thumb}_ </p><h3>{title}</h3><p>_ </a><br />
</li><br />
{/exp:weblog:entries} <br />
{/exp:nth} <br />
</ul>Thanks for any help!