Posts by luisaddor • 193 points
8 posts
-
0
votes1
answer154
viewsA: Row doesn’t respect Padding’s Div
Applies float:left; in your Row CSS.
-
0
votes3
answers874
viewsA: How to count number of clicks on increase fonts button in accessibility bar?
//Função de contar numero de clicks para desativar o botao var countA = 0; $('#btnAumentar').click( function() { countA++; if(countA == 3) { $('#btnAumentar').prop("disabled", true); }…
-
3
votes3
answers874
viewsQ: How to count number of clicks on increase fonts button in accessibility bar?
I am creating an accessibility bar and in it has the options to increase and decrease the source. Follow the button code: <button type="button" id="btnAumentar">A+</button> <button…
-
5
votes1
answer188
views -
2
votes2
answers596
viewsA: How to take horizontal rolling bar from my website?
In fact, this is happening because Voce has a div with 100% width, and with 11% margin totaling 111%, puts a div inside the menu div with the margin.
-
2
votes1
answer1759
viewsA: Center element in the middle of two float elements
Friend, the theory applied on top of such boxes is the same applied in grids responsive. I made a basic example: HTML: <div class="mae" > <div class="f1" > </div> <div…
-
1
votes1
answer111
viewsA: Which version of the primefaces Extensions is compatible with the primefaces 3.5?
The version of the primefaces Extension used with the primefaces 3.5 is 0.7.1.
-
0
votes1
answer197
viewsQ: How to livereload on a local server?
Recently I saw a lot of information about Gulp.js for front-end development. And I want to use some of its functions like livereload while developing the front end of a java application. But I can’t…