Hello, I am attempting to create a sliding effect for specific text where the slide effect adds something similar to extra spacing.
The desired effect can be seen here: like margin or something, the framework being used is .
My question is: Is there a way to conceal this added "margin"?
$(document).ready(function(){
$('.collapse1').hover(function(){
$('.collapsetext1').animate({
width: 'show',
}, 444);
});
});