Posts by Luis Faconi • 181 points
17 posts
-
1
votes2
answers898
viewsA: How to leave a space between the menu and the top of a page?
Vinicius, all right? You can use the property "padding" CSS, as you want a distance between the menu and the top of the page (with the image), you could for example put a "padding-top" within your…
-
0
votes1
answer168
viewsA: How to load an image respecting / linking with the return of a variable in Json
Marcos, all right? You can leave a div or any other empty tag in the place where you want the image to appear. After that, in the result of your JSON, you can create an element img with javascript…
-
3
votes1
answer41
viewsA: How to use border-Radius in CSS?
Hello, all right? The estate border-Radius of CSS can receive up to four values. Ex: border-radius: 15px 50px 30px 5px; The first value applies to the upper left corner, the second value applies to…
cssanswered Luis Faconi 181 -
0
votes2
answers78
viewsA: LINE-HEIGHT is not working on my table
To solve this type of problem, the most recommended method is the display: flex; Try to change the css of his .table to the following form: .tabela { border: 1px solid; width: 350px; height: 198px;…
-
1
votes2
answers241
viewsA: Select text in parentheses (CSS)
You can use the following css: .exemplo{ text-transform: uppercase; } <p>Sistemas de informação <span class="exemplo">(ead)</span></p> Jsfiddle…
-
0
votes3
answers59
viewsA: How to Remove Polylines from google maps?
Jeferson, try to use a button so that when it is triggered, you do the removal of the Polyline. If it works, you can follow an example of this to proceed in the way you think best. <!DOCTYPE…
-
0
votes1
answer487
viewsA: Angle inside a Google ray maps
My problem was solved through this mathematical calculation: var latConv = google.maps.geometry.spherical.computeDistanceBetween(latlng, latlng1) / 1000; var lngConv =…
-
0
votes3
answers59
viewsA: How to Remove Polylines from google maps?
[EDITED] All right? You can use the setMap(null), for example, you can browse a list of Polylines and go setting them with the above method. Remember to remove the array element after being set to…
-
0
votes1
answer26
viewsA: I need help with this select
You can use the command MAX(CAMPO2_FK) to get the most value, then use the group by CAMPO1_FK to filter this value for each of the fields you need. Ex: SELECT MAX(CAMPO2_FK) from SuaTabela group by…
-
0
votes2
answers942
viewsA: Hide button with jQuery
You are probably receiving the information through your serving language, knowing this, I recommend that you use your own if, checking that your user is an administrator, if he is not, you simply do…
-
0
votes2
answers65
viewsA: How does this Join look properly?
all right? One of the first details I realized is that you were indicating two tables in the select and you repeated one of them in the INNER JOIN. I think it is better to keep only one of the…
-
0
votes2
answers945
viewsA: How to place images next to each other in columns?
Caique, are you okay? You can use the align-items: flex-end to say that you want to align your two "div W3-half" at the end of "div w3grayscale" Follow the example: .w3grayscale { margin-bottom:…
-
1
votes1
answer170
viewsA: Data js in html(external script)
I believe that this is not the best way to use this function. You can use the options of Document.getElementById to capture the element where you want to leave your text, the Document.createTextNode…
-
1
votes2
answers162
viewsA: Limit time to Cin input
Hello, all right? You can use the clock() to determine the initial time, and as soon as the user enters something, you can also check with the clock() and determine the difference between the…
c++answered Luis Faconi 181 -
1
votes1
answer52
viewsA: How to send a received variable in the main method to another class to be treated
Hello, all right? I’m not sure I understand what you mean, but you can create a function inside the class, but outside the main, where you will receive the option read in the main by parameter, will…
javaanswered Luis Faconi 181 -
1
votes1
answer574
viewsA: Pass the html input value parameter with php
The correct thing would be for you to put these inputs into a form by setting a "name" for each field and an action for the form, you will use $_Post to capture the values. Remembering that you…
-
0
votes1
answer487
viewsQ: Angle inside a Google ray maps
I have a project using google maps, where I receive the latlng information (which will create a marker in this location), as well as radius and azimuth, knowing that the angle will always be 60°.…