Posts by Vitor Giovanny • 109 points
14 posts
-
0
votes1
answer45
viewsA: Conditional with dates is not analyzed by the Else operator?
Does not fall into Else because the subtotal value is 8h, so it is equal to or greater than 8h. Array ( [d1] => 03:00 [d2] => 00:30 [d3] => 01:30 [d4] => 00:30 [d5] => 03:30…
phpanswered Vitor Giovanny 109 -
2
votes1
answer63
viewsA: Convert string to a C class #
After this code here, just initialize and pass the token that will public Token ReturnCode{get;set;}
-
1
votes1
answer23
viewsA: C#: Number formatting (with dot)
[DisplayFormat(DataFormatString = "{0:0.000}")] public double? Kms_Contrato { get; set; }
-
0
votes0
answers11
viewsQ: Sectiongroup (XML) data - Dotnet Core
I need to search "sectionGroup" values, as I had to do several sections, it is necessary to use it, however, when trying to search, the value always receives Error. Knowing that There is no…
-
0
votes2
answers33
viewsA: Laravel : Form and fetch the ID
something like that $articles = Article::whereHas('tags', function($query) use ($tagName) { $query->whereName($tagname); })->get(); Follow the link in the resolution that a part of the…
-
1
votes0
answers51
viewsQ: Changing data from a Slick method in mobile version - Slick
I’m making some changes to a particular site, but I got stuck. This site has the slide slick, I realized that every resolution less than 480 the arrows of the slide disappear, IE, there is a…
-
-1
votes2
answers290
viewsA: Unwanted white space between image and border
try this here <!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="utf-8"> <title> Testando </title> <style> figure.foto-legenda { border: 3px solid…
-
-2
votes1
answer158
viewsQ: Make editable post-it (element)
I’d like to leave the post-it editable, so that when it is clicked it can already be edited normally. Below is my code: $(".adicionar").click(function() { $('<div class="post-it">' +…
-
0
votes1
answer37
viewsQ: Change information with JS-JQUERY
I am trying to change a certain value within my html code, through JS-JEQUERY, but this not changing, my logic is wrong ? Follows the code: var valor = "texto"; $('.botao botao-comprar principal…
-
2
votes2
answers199
viewsQ: Put only 1x popup every 24h per user
I’m trying to manipulate cookies here with javascript, I’m trying to put, that only displays popups once every 24 hours per user, but it’s showing up every time I enter the page. Here my code, where…
javascriptasked Vitor Giovanny 109 -
0
votes0
answers299
viewsQ: Help with Fraction with java
I want to make the following algorithm: 300/15 + 350/14 - 400/13 + 450/12 - ..... That is, when the denominator is odd it adds up to the next result, if it is even it decreases. Here’s my code, but…
javaasked Vitor Giovanny 109 -
0
votes1
answer715
viewsQ: Centralize Icons in mobile - Css + Html
I’m not able to centralize my icones on mobile, I need this little force, here’s my code below @media(max-width:700px); footer{ bottom:0 ; position: initial; padding: 10px 0; height: 78px; right:0;…
-
1
votes1
answer78
viewsQ: Full mobile height menu
I want the mobile menu the background of it black, stay with height complete. Here is my code: #sidebar { position:fixed; top:0px; right:0px; width:45%; height:100%; background:#1a1a1a;…
-
0
votes1
answer118
viewsQ: Center submenu with menu
/*Sub-Menu*/ .menu.superior .nivel-dois, .menu.superior .nivel-dois, .menu.superior .nivel-um li:hover .nivel-dois{display: contents;po;position: unset;} .pagina-login .menu.superior, .pagina-busca…