Fahad is a talented web developer with a fantastic dimension of creativity and proactivity. He made the whole process very easy for me with excellent communication. I enjoyed the process and timely delivery. Thank you so much.
My goodness! Fahad!!! You're a magician. Oh my gosshh! I can't thank you more, Also thanks to Max for referring you! I'm super happy!
Subscribe To My YouTube Channel For More Upcoming Videos
/*Image Positioning CSS*/
selector .elementor-widget-image{
position: absolute;
bottom: 0;
left: 0%;
}
selector .elementor-widget-image, selector .elementor-widget-image img{
transition: 0.5s ease-in-out;
}
/*Image Move on Hover*/
selector:hover .elementor-widget-image{
left: 40%;
}
/*Image Size On Hover*/
selector:hover .elementor-widget-image img{
width: 330px;
}
/*Hide Content Initially*/
selector .v-content{
opacity: 0;
transition: 1s ease-in-out;
}
/*Show Content on Hover*/
selector:hover .v-content{
opacity: 1;
}
/*Tablet Device CSS*/
@media (max-width: 1024px){
selector:hover .elementor-widget-image img{
width: 280px;
}
}
/*Mobile Device CSS*/
@media (max-width: 767px){
selector .v-content{
opacity: 1;
}
selector .elementor-widget-image{
position: unset;
}
/*Adjust Mobile Image Width from Here*/
selector .elementor-widget-image img{
width: 200px !important;
}
}