Posts by Lucas de Souza • 154 points
11 posts
-
0
votes1
answer19
viewsA: Error in return of database users
I decided as follows: <?php $display_admins = false; $order_by = 'post_count'; // 'nicename', 'email', 'url', 'registered', 'display_name', or 'post_count' $order = 'DESC'; $role = ''; //…
-
0
votes1
answer19
viewsQ: Error in return of database users
[RESOLVED] I am selecting the compos id, user_nicename and display_name of the database, in this I create a foreach to show the result, but the right one would return me all users but returns the…
-
0
votes3
answers51
viewsA: Add class and link to a LI tag
Try it this way: // // Adiciona a classe // function addSlide() { var element = document.getElementById("next"); element.classList.toggle("minhaclass"); } // //Remove a classe // function…
-
1
votes1
answer1512
viewsQ: How to Block Download PDF Files
I’m developing an EDA platform for a client, the same has several handouts in pdf that wants to make available to the subscribers of the course, but he sells physical handouts as well, so he wants…
phpasked Lucas de Souza 154 -
2
votes2
answers3383
viewsA: How do I make a website responsive with or without bootstrap?
With or without bootstrap you need to understand about the grid concept What is a Grid System? In case you’re new to CSS grid systems, let’s start with a quick definition. In basic terms, a grid…
-
1
votes1
answer22
viewsQ: bug Multiply Coins flip jquery
I’m developing a kind of old game, but there is an error that is getting in my way, I need the flip animation to work all the coins however, it only works at first ignoring the others.…
-
0
votes1
answer35
viewsA: Divs piling up
You can try it this way https://jsfiddle.net/hbm9kvkn/
-
1
votes1
answer155
viewsA: Facebook Plugin for Wordpress
I recommend you create your Facebook plugin on Facebook itself would look something like this <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs =…
-
5
votes4
answers11708
viewsQ: How do I call a function by pressing Enter in <input>
I’m creating a chat for a website and need the user to just press the enter and the message appears on chat, this function works normally with a field textarea but with input nay. HTML <form…
-
1
votes2
answers250
viewsA: Spacing between Ivs overlaps
Create your responsive slide, it’s much simpler and avoids too much headache. /* Desktop maiores */ @media (min-width: 1200px) { ... } /* tables em formato porta retrato até os desktos no formato…
-
1
votes7
answers4242
viewsA: How to reset CSS formatting?
Each makes the css reset according to the way it works I for example like my css reset so * {margin:0; padding:0; list-style:none; vertical-align:baseline;} or you can be a little more violent and…
cssanswered Lucas de Souza 154