
WordPress
Creative Team Member Section using Elementor
- Abdullah Nahian
- February 14, 2023
- 1 Minute Read
- 417 Views
In this tutorial, I’ll show you How to Create a Creative Team Member Section using Elementor Page Builder 🔥 No additional plugin is required!! 🔥
Source Code
selector{
position: relative;
margin-bottom: 0 !important
}
selector .team-title{
position: absolute;
bottom: -35px;
display: none;
transition: .3s;
}
selector .team-desg{
position: absolute;
bottom: -40px;
display: none;
transition: .3s;
}
selector:hover .team-title{
bottom: 65px;
display: block;
transition: .3s;
}
selector:hover .team-desg{
bottom: 55px;
display: block;
transition: .3s;
}