Posts by José Francisco • 213 points
4 posts
-
1
votes2
answers31
viewsA: When they arrive at the first and last sliders put the slides all as . active
In your startSlider function, when you no longer have an image to display you return to the first element of the block. However you are assigning the active class to that first block and doing all…
jqueryanswered José Francisco 213 -
1
votes2
answers7788
viewsA: Chronometer in JS
Change the counter position to relative. #contador{ position: relative; margin-top: 32%; left: 19%; } The Absolute position is doing the calculation at all times. Reference: the element with…
-
2
votes2
answers149
viewsA: Why don’t these Ivs line up?
.content-all{ height: 100%; width: 100%; background-color: yellow; } .content-descriptions{ height:120px; width: 1020px; background-color: green; } .content-descriptions-left { float:left; width:…
-
4
votes1
answer1170
viewsA: "Syntax error: Missing 'semicolon'" in Mysql database
CREATE TEMPORARY TABLE notas (dit_codigo int,[login] varchar(50),cur_codigo int,notaOn decimal,notaOff decimal,idNota int, notaOffMax decimal) VALUES () END login is a reserved word. Add keys to it.…