Skip to content Skip to sidebar Skip to footer

Div Push Away From Divs When I Mouse Over The Div

I am running Masonry and all my post container divs and I want the title and tags to appear when I hover over the post div. I am trying to display the title on top of the post and

Solution 1:

As Jakub mentioned, the positioning is wrong. In your example i added

#contentdiv{
        position: static !important;
    }

And it corrects the problem. Although this works. It still isn't functioning how you would want. I recommend building a new container div, setting your margins and padding's on the div "squares" throughout that container div, until its working as desired.

Post a Comment for "Div Push Away From Divs When I Mouse Over The Div"