Posts by LucasTonetto • 26 points
3 posts
-
0
votes1
answer48
viewsA: Use a different CSS in each view
<link rel="stylesheet" media="screen and (max-width: 700px)" href="arquivo.css"> I’m not sure if this is what you’re looking for, but that way the CSS only loads if the width meets the…
-
0
votes1
answer380
viewsA: Submit sending several times
I believe it is because, after the return of the false, the code outside the keys continues to be executed, regardless of the return. You can try to put ajax inside Else. For example: if…
-
1
votes1
answer1329
viewsA: Show border with CSS Hover
.nav navbar-nav .conteudo:hover{ border-top: 3px solid white; border-bottom: 3px solid white; } Nav and navbar-Nav are classes of the same tag, so the CSS does not work, you must use a single class…