Posts by Paulo Henrique • 99 points
7 posts
-
0
votes1
answer224
viewsA: IOS emulator in Webview (iframe) losing the Asp.net session
Problem solved, the problem was neither in Ionic nor in ASP.NET. What was going on? IOS emulator in Xcode it does not persist the ASP.NET session in the emulator or whenever you would log in, the…
-
0
votes1
answer224
viewsQ: IOS emulator in Webview (iframe) losing the Asp.net session
I have a problem with my project in Ionic, below follow the versions. Ionic: 4.1.2 ASP.NET: 2.1.502 A little about my project... It has a route in the application where it generates a Webview…
-
0
votes2
answers2173
viewsA: How to make a Bootstrap Collapse button disable the other
Bruno Rosa, no Bootstrap na documentação do 3, em Componentes tem sobre Collapse, onde tem a possibilidade de usar Accordion no seu caso, teste o código abaixo utilizando Accordion. .panel {…
-
0
votes4
answers480
viewsA: Align text vertically to an image
I noticed that you use bootstrap 3 by class img-responsive, in bootstrap 3 still the grid system had some limitations, until I advise you to take a look at the new version is very good the part of…
-
1
votes1
answer372
viewsA: Why is an internal alignment of a <button> button different from a <a> link, even using the same class?
Updated - 08/11/2018 After much research despite understanding the question in various ways I researched and got a more plausible answer with sources for your question. The answer is from Cubed Eye…
-
2
votes2
answers57
viewsA: Problem working with Bootstrap Resolution
Hello @wlandyband, the right fix for this type of case is .clearfix for the partitions or parent elements that inherit the .col, how the .col, has attribute float: left; it causes the element to…
cssanswered Paulo Henrique 99 -
3
votes1
answer207
viewsA: syntax error, Unexpected 'endforeach' (T_ENDFOREACH), expecting end of file. Does anyone have any idea why this error?
<html> <body> <h1>Listagem de Produtos</h1> <table> <?php foreach($produtos as $p): ?> <tr> <td><?=$p->nome;?></td>…