Hi,
1. I want to decrease the space between the blog posts
2. I also want to add a thin line between the blog posts
What code shall I add?
Thanks
Charlotte
Hey Charlotte!
Please add following code to Quick CSS
.blog .post_delimiter {
display: none;
}
.blog article {
border-top: 2px solid #e2e2e2;
padding-top: 20px;
}
Best regards,
Yigit
Thanks :)
Now I want to some more space under the line and blog post.
Also, I want to delete the first line that is above the first post.
Cheers
Charlotte
Hi!
Please add following code to Quick CSS
.blog article:nth-child(1) {
border-top: none;
}
and increase “20px” value to increase the space between line and post
Best regards,
Yigit
Great, thanks :)
Last thing. If I want just the blog images to be 950px wide, but not the text.
What code shall I add?
Hey!
Please add following code to Quick CSS as well
.blog .container {
max-width: 950px!important;
padding: 0;
}
.blog .big-preview.single-big {
max-width: 950px;
}
I closed this thread – https://kriesi.at/support/topic/fullwidth-easy-slider-8/
Cheers!
Yigit
:-) Thanks!