Hello There seems to be some spacing issues in posts
When we got to the next paragraph after you add a list of bullets there seems to be more spacing than normal
How do we make it consistent?
Hello There seems to be some spacing issues in posts
When we got to the next paragraph after you add a list of bullets there seems to be more spacing than normal
How do we make it consistent?
Hello Adwin,
Thanks for writing in!
Please add following CSS under X > Theme Options > CSS:
.single-post ul {
margin-bottom: 5px;
}
1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g
2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI
Thanks.
that worked perfect thank you!
one last question, when you click an archive or category, the feed is the ex[paned view, how do we make it the list view with an excert like the blog?
Thank for the quick responses
Hi Adwin,
There is a custom CSS code on your site that looks like this:
@media (min-width: 767px) {
.blog .entry-featured {
float: left;
width: 32%;
}
.blog .entry-content {
float: right;
width: 66%;
}
}
That’s what makes your blog page list-view layout, to apply that same layout to your archive pages please update that custom CSS to this:
@media (min-width: 767px) {
.blog .entry-featured,
.archive .entry-featured {
float: left;
width: 32%;
}
.blog .entry-content,
.archive .entry-content {
float: right;
width: 66%;
}
}
That custom CSS seems to be added in Theme Options > CSS area
You can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.