ihover
ihover copied to clipboard
Responsive
I use ihover and I realized that it's not responsive. Ones overlap each other :
I think I have to do something somewhere here :
.ih-item.square { position: relative; width: 316px; height: 216px; border: 8px solid #fff; box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }
Could anybody help me ?
My code with old Bootstrap :
<div class="row-fluid">
<div class="span3">
<div class="ih-item square effect8 scale_up"> .... etc
</div>
</div>
+1 for responsive
I also used with Bootstrap 3 and i think it's must to be responsive Design :+1:
I'll take a look at it if I have time
Thanks for the advice :)
I look forward to your response
+1
Soon will we get a responsive style ?
I am using this in a project and need this issue resolved. You said 8 months ago you would take a look-
+1 For BS responsive you can try to remove fixed dimensions. I have not tried all the effects, but this worked for me:
.ih-item.square {
position: relative;
/*width: 316px;*/
/*height: 216px;*/
/*border: 8px solid #fff;*/
/*box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);*/
}
And html something like this:
<div class="col-xs-6 col-sm-4 col-md-4 col-lg-3">
<!-- normal -->
<div class="ih-item square effect14 left_to_right">
<a href="#">
<div class="img">
<img src="image.jpg" alt="img" class="img-responsive img-thumbnail">
</div>
<div class="info">
<h3>Title</h3>
<p>Description goes here</p>
</div>
</a>
</div>
<!-- end normal -->
</div>
That worked great! You might also change the code in the ihover.css file itself as this if you are working with Bootstrap 4v:
.ih-item.square { position: relative; width: 100%; height: auto; border: 8px solid #fff; box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); }