Posts by Amzero • 241 points
15 posts
-
0
votes0
answers31
viewsQ: Clone node deeply not working properly
I’m trying to duplicate the div meta from a Youtube video page. It’s the div below the video title div and like and dislike. I want you to have 2 equal ones, one on top of the other. But when I use:…
-
0
votes1
answer14
viewsA: Wordpress - Single Stylization
I don’t understand your case very well but in the code inside the page, the Loop I printed the posts, you will have to put conditional(if) to know how to distinguish your posts and then decide…
-
1
votes0
answers150
viewsQ: Iframe does not respect max-width
The iframe is responsive and works perfectly when I do it in prototype. But in this case I do not know why it does not obey the max-width of his father’s knot. It always gets much smaller than the…
-
1
votes1
answer46
viewsQ: Problems generating PHP page from dynamic menu link
I have a dynamic menu in which it is generated from the tables of my database. <?php $results = DB::query('select * from categoria'); foreach ($results as $row) { echo '<a href="#"…
-
1
votes2
answers1248
viewsQ: Footer go to the bottom of the page
My footer has a set height(height: 40px;). When the content of the page itself is small, the remaining area after it is all blank, because of the background, giving a bad aesthetic to the site. I…
-
4
votes2
answers7271
viewsQ: Divs daughters extrapolam Div father
I’m trying to get the DIV father to be filled by all the DIVS daughters, but I’ve tried several things and it doesn’t work. Always ends the father DIV being extrapolated by the daughters. EDIT: I…
-
0
votes3
answers521
viewsQ: Margen-top of DIV daughter drives her away and DIV father together
I’m hoping that the #div1 get away from #fisrt and does not lead to #second together, but it’s not working with margin-top: 5px; in #div1;. That is, between the junction of the #first with the…
-
0
votes2
answers268
viewsA: Error when compiling Cmake project
Looks like he’s not finding the C Compiler in his system. It may be that your path variables are not correct. To check if the variables were set correctly, open your command prompt and call the…
-
6
votes2
answers4859
viewsA: What is von Neumann’s architecture?
To summarize the subject the architecture is basically this: In which it is characterized in: Input and output systems; Main Memory; and CPU(Processing/Processor); The main memory functions as a…
-
1
votes1
answer80
viewsQ: How to use a single jQuery function without importing the entire library?
I’m making a extension for Firefox and in it I care about Jquery todinha. In the project I only use the function getJSON();. I looked it up online and didn’t find much. I searched the github…
-
0
votes1
answer24
viewsA: Problem with add-on firefox on site that does not refresh/browse by Ajax/JS
I was able to find the answer! Just use this function by passing this parameter: document.addEventListener('DOMNodeInserted', function (event) { seuscodigos(); }); For the function…
-
0
votes1
answer24
viewsQ: Problem with add-on firefox on site that does not refresh/browse by Ajax/JS
I am developing my first Webextension(Firefox Add-on) and is working properly. However, I’m in trouble when part of the site is browsed without giving refresh. That is, the extension does not work…
-
1
votes0
answers77
viewsQ: Doubt about access control
I’m looking to make an application Android which achieves CRUD in a database MYSQL. I’ve researched that the way to do this is by using a Webservice. I’m new in this area but I’ve done a simple via…
-
4
votes3
answers962
viewsA: Printing a character in place of a number
Why inside the printf(), your second %d is wrong. %d is only for printing numbers. %c is for printing characters; and %s is for printing string(strings). Then the correct would be: (I did not…
-
4
votes2
answers177
viewsQ: C# - Problems reading data from an XML returned from a site
I want to take the Location of an external IP and for that I used a site where I simply put the IP I want and it returns the XML with the information. Example: freegeoip.net/xml/4.2.2.2 that is to…