Tagged: separators
Hello Enfold,
Is it possible to add separators between blogposts on single author, small preview pic pages?
The solutions I could find on the forum here don’t seem to work.
Like: https://kriesi.at/support/topic/horizontal-ruler-between-blogposts-on-main-blog-page/
Best regards
Hey emilcobussen!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.blog .post_delimiter {
border-bottom: 1px solid #e2e2e2;
}
if that does not work, please post the link to your website
Regards,
Yigit
Hi!
Please use following code instead
.blog article {
border-bottom: 1px solid #e2e2e2;
margin-bottom: 50px;
}
.blog .post_author_timeline {
display: none;
}
Best regards,
Yigit
Hello Yigit,
Thank you for the fast response, but this doesn’t seem work.
The separator is as wide as I would like it to be.
But it adds a lot of whitespace above the line.
Also the categories don’t show the separator.
Do you have any ideas for this?
best regards
Hi!
Please add following code to Quick CSS as well
.blog .post_delimiter,.archive .post_delimiter {
padding: 0;
margin: 20px 0;
}
.archive article {
border-bottom: 1px solid #e2e2e2;
margin-bottom: 50px;
}
Best regards,
Yigit
Works great, thanks Yigit!