Posts by Alexis Garcia • 172 points
10 posts
-
-1
votes1
answer48
viewsA: How to streamline the color of a text in a cell of an HTML table, using Javascript
I didn’t understand it very well but I think you wanted the text to be all blue, was that it? Run the example down if that’s what you wanted. EDIT: Corrected as per your reply. Loop the elements…
-
0
votes1
answer37
viewsA: Bootstrap Botton Hover
Would that be it? At Hover the text appears, it does exactly the same as the click but at Hover. $('.nav-link').on('mouseover', function(){ //botões $('.active').removeClass('active');…
bootstrap-4answered Alexis Garcia 172 -
0
votes1
answer32
viewsA: How to place Tagas ''a' in the banner corner?
From what I understand you want to line up <a> on the right. You were missing a width for the 'container' of the buttons. Insert width: 100% .banner { background-image:…
-
0
votes1
answer25
viewsA: Return the date value selected in the datapicker in a variable
Your code is working, the problem is when you load Document (document.ready) there is no date selected, and then the error you are seeing is PHP because the variable is empty. It has to be <?php…
-
0
votes2
answers46
viewsA: Why can’t I reverse aside my aside and Section:
You can do more than one way, using your code just enter the width from the boxes to 50%. Another option is to use the display: flex and the flex-flow:row. With the flex-flow, you can put the…
-
-2
votes1
answer37
viewsA: Div does not center
You must add transform: translate(-50%,-50%);. This property moves an element from its current position (according to the parameters given for the X axis and the Y axis). See resolved:…
-
0
votes1
answer43
viewsA: Set position of the dropdown box using . append()
You can use the .insertBefore() instead of the .append(); $('button').click( function(){ $('<div class="primeiro">Primeiro Elemento</div>').insertBefore('.segundo'); }); .container{…
-
-1
votes1
answer22
viewsA: Remove Styles with "Display None" depending on the logged in user
With php you can assign a date attribute for example data-acesso="2", and with javascript go find this attribute that can be text or number for example if you want to create access levels type nivel…
-
-1
votes1
answer49
viewsA: Why doesn’t my button line up at the center?
Attention to names in class’s. Accents, dots and other characters should not be used. Only _ or - is the nominee. I changed the class name and composed the css in the class .botao_h3 button {…
-
-1
votes1
answer27
viewsA: Change Css with Jquery in multiple elements, one by one
I changed the selector 'select.label' because jQuery wasn’t catching him. You will have a problem that is the elements will end up with all the colors class and the last one in the CSS will override…