Good morning,
I’d like to add a dotted line between the Blog Posts that are displayed on a page via the Blog Posts Content Element placed with the Advanced Editor.
Thanks.
Hi scottrseeley!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.home footer.entry-footer {
border-bottom: 1px dotted #666;
padding-top: 30px;
}
Regards,
Yigit
Hey scottrseeley!
Add this to your custom CSS.
article .entry-content-wrapper {
border-bottom: 1px dashed black;
margin-bottom: 60px !important;
}
.template-blog > article:last-child .entry-content-wrapper { border-bottom: 0px !important; margin-bottom: 0px !important; }
Best regards,
Elliott
Thanks Elliot – that code worked perfectly.