Posts by Léu Almeida • 61 points
3 posts
-
1
votes2
answers2253
viewsA: Angular 8 / ngx-bootstrap / Datepicker
Add location to Chronos import { defineLocale } from 'ngx-bootstrap/chronos'; import { ptBrLocale } from 'ngx-bootstrap/locale'; defineLocale('pt-br', ptBrLocale); Then use the datapicker for this…
-
1
votes1
answer67
viewsA: Why is echo output not printing on the screen? (Page is blank)
You didn’t start php the right way. It would be right: <?php ini_set('display_errors', '1'); echo "as"; ?>
phpanswered Léu Almeida 61 -
1
votes1
answer269
viewsA: Problem with Z-index
What happens is that the #questionSingUp is with z-index smaller than the #actionSingUp. Try to leave it like that: #questionSingUp { z-index: 10; position: absolute; width: 270px; height: 200px;…