Hello, Paste the code given below in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .featured_content .column-three .col3 .inner_area { display: none; } .featured_content .column-three.sub .col3 .inner_area { display: run-in; } .featured_content .column-three { border: none; margin-bottom: 0px; padding-bottom: 0px; } This will solve your issue.
Okay Pyiush, thank you very much! Just to give me all the possibilities, what if I wanted to do the opposite? Remove the second feature area as a whole and let visible only the first one? How would I do that? Plus, in case of removing the second area and let only the first available, it it possible to load the testimonial (which is in the second currently) into one the widgets of the first area? Thank you!
Hello, For this issue, Paste the code given below in Custom CSS instead of the above replied code. Appearance > Theme Option > Styling Option > Custom CSS Code: .featured_content .column-three.sub { display: none; } .featured_content .column-three{ border-bottom:none; } This will solve your issue.