I want to add a diagonal border to the bottom of each news item, i have the req css
- Code: Select all
.stripes {
background: repeating-linear-gradient(
-45deg,
#eee,
#eee 5px,
#fff 5px,
#fff 10px
);
}
It works great in standard mode own article format but i can't find the 'template' for this portal mode, where should i be looking to add the required div?
- Code: Select all
<div class="stripes">
</div>
TIA