Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

How to align read more button at the bottom in Vertical Grid slider

Add the following code snippet to the Divi Theme Options to apply the setting sitewide.

If you want to apply the setting only to a specific page, put it on the page custom CSS area.

.el-dbe-blog-extra-slider.vertical_grid .et_pb_post_extra {
	display: flex;
        flex-direction: column;
}
.el-dbe-blog-extra-slider.vertical_grid .post-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
  padding: 30px;
}
.el-dbe-blog-extra-slider.vertical_grid .post-content .post-data {
        flex-grow: 1;
}