Posts by Mattos • 366 points
5 posts
-
1
votes3
answers694
viewsA: Scale div as image
take a look see if this is what you want: * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .items { margin: 50px auto 0; width: 90%; } .items::after {…
-
1
votes2
answers9582
viewsA: Position of blocks in Bootstrap
Hello, From what I understand I think I got what you want: First I took the classes col-push and col-pull that you had placed, I traded for the original bootstrap classes pull-left and pull-right.…
-
3
votes1
answer2826
viewsA: form-group Bootstrap
It has several ways to center horizontally and vertically. You’re talking about "offset" to center horizontally using the grid system Bootstrap, so you better understand the concept because the…
-
1
votes2
answers2620
viewsA: decrease time of jQuery slider
In this case as delay to load, that is, only when the document is ready (ready) that the function is executed. You really need to know if it’s the function or if it’s the whole set, many functions…
-
16
votes1
answer23562
viewsA: Show GIF while page loads
In fact what happens on this site is that it puts over the content a DIV that covers everything and as soon as the content is loaded (document.load) it hides the DIV with an effect of fadeOut. I…