heelo, i used instafeed.js to embed my instagram posts on my website then i put it inside an owl carousel.And now i want to style that is comming automaticly from instagram
img[title]:hover::after{
content: attr(title);
position: absolute;
top: -100%;
left: 0;
} i used this css but its not working, so i thought that i need a jquery function, but i have already this script that i used to embed insta and owl-carousel
<script>
$(document).ready(function (){
var feed = new Instafeed({
accessToken:*******************************,
get: 'user',
after: function () {
var owl = $('.owl-carousel');
owl.owlCarousel({
items: 3,
margin: 10,
nav: true,
loop: true,
autoplayTimeout:3000,
autoplayHoverPause:true,
navText : ["<i class='lnr lnr-chevron-left'></i>","<i class='lnr lnr-chevron-right'></i>"],
});
},
});
feed.run();
});
</script>
so now i want to create a div after this script excecution that will contain the and style the hashtags myself when user hover on the imgenter image description here