Posts by isaacmeira • 379 points
12 posts
-
-1
votes2
answers133
viewsA: Printdocument Printpageeventargs c# wpf Pagesize WPF
since you made the change in paper size, you could change in this line pd.DefaultPageSettings.PaperSize = new PaperSize("teste", 300, 600); put on the size of the paper you were able to print on I…
-
0
votes3
answers164
viewsA: I can’t find the button with the querySelector
You could put an id on that button, besides being easier, it would be a much cleaner and more visible code ex : <button tabindex="-1" class="btn btn-inverse btn-large" id= "idBOTAO" > Botao1…
-
7
votes6
answers24661
viewsA: What is the difference between declaring variables using Let and var?
Complementing the response of friends, it is always good you use LET instead of VAR, to avoid the so-called Hoisting, what is this ? In Javascript, functions and variables are hoisted (or "taken to…
-
1
votes2
answers506
viewsA: With making CSS a Carbon Fiber type background? Is it possible to make carbon fiber style background with CSS?
I think that might be what you want, note that all gradients are facing 45º... the RGBA is setting the opacity to make the gradient effect on it. You can check a few more details on where I got this…
-
1
votes1
answer78
viewsA: html - Two vertical scrollbars on Android
I simulated the same problem, in which I had two scroll bars The solution is : Use the Nicescroll and make the scroll desired, it is very simple to use, and is not heavy. Here’s an example code for…
-
0
votes3
answers11268
viewsA: How to Install . ipa without using the Appstore
You can use the Xcode, install and run, follows Tutorial In the tutorial shows using the itunes, the Xcode the OTA and several other solutions I believe I can help…
-
1
votes1
answer166
viewsA: Carousel content harms SEO? Is the hidden Carousel content indexed?
I was reading this article a while ago because I had the same question : https://www.workhorsemkt.com/pros-and-cons-content-carousels/ By their nature, carousels require loading additional images…
-
-1
votes2
answers674
viewsA: With CSS is it possible to merge two Images?
you can use the RGBA in your backgroud (Image), and set the transparency at the end, for example attribute { background-color : rgba(50,50,100, 0.5) - where 0.5 would be the amount of transparency…
-
12
votes3
answers586
viewsA: What does the 3-bar C++ comment mean?
In visual studio the 3 bars indicate documentation, not just comment. It is used to embellish comments that will be formatted specifically through your editor or some other tool like documentation…
c++answered isaacmeira 379 -
1
votes2
answers4974
viewsA: Unwanted CSS white space
use the command in the image div and the command in the image height: 100% I was having the same problem on my web-site at a time, I decided by applying this command.
-
1
votes2
answers336
viewsA: Social button login Google and Facebook round
Just put it in your CSS : chamadaDoBtn{ border-radius : 100% } So he’ll be all round. Note: The border-Radius command, measures the percentage of 'round' you want, the 100% would leave it as a ball,…
cssanswered isaacmeira 379 -
1
votes1
answer393
viewsQ: Site with a white bar at the end
Good afternoon guys, I’m developing a personal site in which I’m having a little problem, but I already searched and I couldn’t solve, it turns out my site, in bigger resolutions, gets a huge white…