This topic has 4 replies, 2 voices, and was last updated 11 minutes ago ago by Rose Tyler
https://anandk60.sg-host.com/all-departments/
On this page, elements are displayed as boxes. These are placed within an inner column. How to create gaps in between these boxes.
Hello, Merin,
We’ve changed:
.active-block:hover {
background-color: #b4e5f4;
}
.active-block{
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
padding-top: 20px;
border-radius: 30px;
}
to https://prnt.sc/reaP4n_G8kJ7
.active-block .vc_column-inner > .wpb_wrapper {
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
padding-top: 20px;
border-radius: 30px;
}
.active-block .vc_column-inner:hover > .wpb_wrapper {
background-color: #b4e5f4;
}
to get the next result – https://prnt.sc/OfjmCHtGaiDW
Best Regards,
8Theme’s Team
This is working. But we are facing an issue with height of boxes. Box height changes when their content varies in length. Please provide a solution
Hello, Merin,
You’re welcome!
Please try to use this code:
.active-block .vc_column-inner > .wpb_wrapper {
min-height: -webkit-fill-available;
}
Best Regards,
8Theme’s Team
You must be logged in to reply to this topic.Log in/Sign up