Since my last problem wasn't able to be resolved, I figured out a different way to go about it. I would like to just have columns that are divided into 1/8. When I try to customize the columns, it only goes up to 1/6. Please advise so that I may be able to solve this issue. Its been over a month. Thanks.
WPBakery currently doesn't provide option for 1/8 columns. Since WPBakery doesn't provide this option it has to be added with custom code. Normally our support scope doesn't provide this but I am helping you this time to achieve the results, here is how can you achieve it:
Since my last problem wasn't able to be resolved, I figured out a different way to go about it. I would like to just have columns that are divided into 1/8. When I try to customize the columns, it only goes up to 1/6. Please advise so that I may be able to solve this issue. Its been over a month. Thanks.
Hi cori333,
WPBakery currently doesn't provide option for 1/8 columns. Since WPBakery doesn't provide this option it has to be added with custom code. Normally our support scope doesn't provide this but I am helping you this time to achieve the results, here is how can you achieve it:
1. Add 8 columns with span2:
(view large image)
2. Add class name "eight-columns" to the row:
(view large image)
(view large image)
3. Add this Custom CSS (here):
.eight-columns .vc_column_container.vc_col-sm-2 {
width: 12.5%;
}
/* Smaller screen sizes adjust to larger column width to avoid layout breaking or making it look messy */
@media screen and (max-width: 992px) {
.eight-columns .vc_column_container.vc_col-sm-2 {
width: 25%; /* 4 colums */
}
}
I hope this helps you.
I was able to apply this technique to the website. Thank you for your help and accommodations!
Hi cori333,
I am glad that it worked for you!
I'll close this ticket now. If you have other questions feel free to create new ticket.