Posts by BRABO • 76 points
10 posts
-
0
votes1
answer58
viewsA: I can’t understand the difference between percentage and px in CSS
This depends a lot on what you want to do and the person you are doing it. It is a long discussion that has been beat many times. The percentagens are advantageous because it is the percentage of…
-
-1
votes1
answer21
viewsA: To Assign a js variable to an HTML value element using jquery
You have to use the method val(). When emptied ex: .val() it returns the value, when filled it changes the value of the element to what to put inside the parentheses .val('ola') $(function(){…
-
0
votes1
answer39
viewsA: Make effect of Houver with jquery transiting between elements
I think you are complicating a lot, I have simplified your javascript. I have created 2 new classes selecionado and naoSelecionado, applied the styles css that you wanted. In JS has a event…
-
-1
votes1
answer49
viewsA: Remove blanks that are below the div
The problem is in the margin you are giving each div, it creates the space between them. I used display: grid and pulled out the margin. Was that the result you wanted? Check below html {…
-
-1
votes1
answer23
viewsA: Hide contact items in burger menu
You had the social media div off the menu, that’s why they always appeared. I fixed the HTML in the example below. @import…
-
0
votes1
answer50
viewsA: How do I position menu next to each other - CSS
The error is in your css, you have the elements with fixed positions and next to each other. I’ve worked out a quick dropdown template for you to see how the dropdown works (see example below). Take…
-
0
votes1
answer47
viewsA: How to return data from a Jason, within PHP, via Jquery?
Are you doing the json.parse() of something that is already json. You can use jsonRESPONSE.dados no javascript which will be json. You can open the developer tools and breakpoint the ajax response…
-
0
votes3
answers26
viewsA: Insert data into MYSQL database by PHP with more than 1 screen
Take a look here. https://codepen.io/piyushpd/pen/PooPByb and here https://bootsnipp.com/search?q=wizard . This is an example of a 'Form Wizard'. The code is all in your screen1.php but it seems to…
-
0
votes1
answer41
viewsA: Is the animation done through some "animated gif" or is it another kind of feature?
It’s not a GIF. The brown background can be done with CSS. The white image inside the brown is animated through the CSS of path of SVG. You can see some animations ideas here…
-
0
votes1
answer29
viewsA: Reapplying CSS on another page
You have to load your CSS into the other file. In HTML you should have something like <link rel="stylesheet" href="assets/css/main.css"> The way assets/css/main.css you have to trade for your…