Posts by Gabriel Garcia • 207 points
15 posts
-
4
votes1
answer206
viewsA: Reverse CSS3 transition effect
Not knowing his intention, it gets a little complicated to get an exact solution, but it’s like Guilherme said in the comments that by default he grows and the room to grow is down. You can make a…
css3answered Gabriel Garcia 207 -
1
votes1
answer76
viewsQ: Error in SCROLL function inside Onclick
Good afternoon Guys, a week or so a customer came complaining that the link from his site was not working and I could not understand why, because the site was delivered working, it was a link that…
-
1
votes4
answers657
viewsA: How to organize many Ivs in Bootstrap (Image)
You can set a maximum fixed height for the elements, in your case ai, the items are clustering because it has some with height larger than the other. If you put the height of class="col-Sm-3" in…
-
0
votes2
answers3920
viewsQ: Website is not getting responsive with Bootstrap
I made a site using bootstrap, but it is not getting responsive on mobile, it simply appears as if it were on a monitor and then with scroll bar both horizontal, and vertical...…
-
0
votes3
answers35
viewsA: Delete Line with email
I’m not sure where to use it, but when I need to inhibit the user from writing, posting, sending or whatever with his email, I use a preg_replace with specifications like the one below. and then the…
phpanswered Gabriel Garcia 207 -
2
votes3
answers1261
viewsA: How to make the background inside a div occupy the whole body
If you are using any div with container idea with size of 970px for example, or any other value to give the width of the site and centralize it, you should create a div with width="100%" within that…
-
1
votes2
answers2518
viewsA: IF condition inside input
In your case if and Else do not fear staying before value, it can stay within value, as follows: <input type="date" id="data" name="data" value="<?php if($x == $a){ //mostra o value dentro do…
-
0
votes2
answers608
viewsA: Align images and text within div
Do the following: <div class="col-md-12"> <center> <ul class="header-features"> <li><i class="fa fa-bullhorn"></i> <div class="header-feature-caption">…
-
0
votes2
answers608
viewsA: Align images and text within div
For what I’ve seen you’re working with Bootstrap, do a test: delete the div from the pull-right and put the pull-right class in the UL tag and to ensure, in your col-Md-12 also add the class:…
-
3
votes1
answer1470
viewsQ: Test connection with Phpmailer
I’ve been working with Phpmailer for a while, now I’m inserting it into a more complex Content Manager and through the panel one can insert several emails to be the Phpmailer Sender in several…
-
1
votes2
answers6310
viewsA: HTML inside "echo" php
You can use it the way SK15 said, or you can instead use echo to write directly to HTML and just insert the info in php for example: <td> <a…
-
-1
votes4
answers8313
viewsA: Is using addslashes against SQL injection safe?
Always create an anti_injection function, is what I have always used for security in login systems // Função de Eliminação de qalquer comando que possa invadir ou alterar o sistema de forma indevida…
-
-2
votes2
answers1019
viewsQ: Use "anti_injection" in a MD5 password
I am studying a little more in depth the PHP and in question of security in PHP I have used the standard anti_injection found on the internet and used by many function anti_injection($sql){ $sql =…
-
2
votes3
answers212
viewsA: What Does This CSS Code Do ?
This type of CSS formatting is often used in ready-made CSS Frameworks icons, for example bootstrap. .glyphicon-asterisk:before { content: "\2a"; } .glyphicon-plus:before { content: "\2b"; } This…
-
0
votes2
answers318
viewsA: How to create a static website
Try to overflow your browser window. In case on your body and do the test, body{ overflow: scroll; }
htmlanswered Gabriel Garcia 207