Posts by Adriano Resende • 275 points
10 posts
-
3
votes2
answers4140
viewsA: Catch user city with IP
You can get information using the following XML: http://www.geoplugin.net/xml.gp?ip=SEU_IP You put the IP in place SEU_IP or http://www.ipinfodb.com/ip_location_api.php Example:…
phpanswered Adriano Resende 275 -
0
votes2
answers675
viewsA: Fold transition effect with CSS
Missing a tag or tag p with class .btn It wouldn’t be like this? <div class="back"> <p class="btn"> <a href="#" class="button curl-top-left">BUTTON EFFECT</a> </p>…
-
1
votes3
answers154
viewsA: There is some significant difference between the IMG tag and INPUT IMAGE
According to Mozilla documentation, the tag or tag img represents an image block in the document and while input with image type, represents as a graphic button, as if it were <input…
htmlanswered Adriano Resende 275 -
-1
votes2
answers1946
viewsA: Customization of buttons
When input is disabled disabled in the attribute, by default CSS3, the input becomes more "transparent", so the arrow that is black turned gray getting a little more transparent. To hide the button…
-
1
votes3
answers436
viewsA: Problems Configuring Gradient in CSS
With the reference you posted, I believe it has improve the gradient code, I recommend using the following standard: body { font-size: 12px; font-family: Arial, Helvetica, sans-serif; margin: 0px;…
-
1
votes4
answers9996
viewsA: Modal Bootstrap on Modal by JS
It is possible to use without javascript, just put a button inside an open modal to call the other modal. If you want to use javascript to call Modal, use the following code:…
-
3
votes3
answers75169
viewsA: Centralize Divs - Bootstrap
I recommend not touching margin laterias of the column class (col-Md-*) because it disturbs the grid structure. You can center texts using the class .text-center or col-md-offset-* to push the block…
-
5
votes4
answers14354
viewsA: Line break in bootstrap
You can do two ways, using .row which it represents as a line or .clearfix that breaks the line: In the case .row would be: <!-- Linha 1 --> <div class="row"> <div…
-
1
votes2
answers903
viewsA: site does not work in mobile version
It is possible that your mobile has no support for this feature. Check the mobile browser version if supported for these purposes, warning that this effect is done by CSS animation-name and other…
-
1
votes2
answers278
viewsA: Image Cutting
Has like, the most recommended plugin I know is Cropper, see the examples on the official website here. The installation is practical, see a small tutorial below, second official documentation. HTML…