Posts by Wendell • 1,312 points
72 posts
-
0
votes2
answers77
viewsQ: Jquery Display and Hide Div Problem
I have a code, where I want to display the result of a sum without reloading the page. As an example, I have already set initial values in the fields. *Problem: I have one div id resultado that has…
-
0
votes1
answer387
viewsQ: Doubts on how to Validate CNPJ with Jqyery
After searching some websites, I found a CNPJ validation code in jquery, I would like to make this function active when clicking the email field, if the cnpj field is not filled or the invalid…
-
0
votes1
answer35
viewsQ: Problem Deleting Row in SQL Table with Ajax
I’m with a function, trying to delete a row from my sql table, but nothing has happened. HTML: <span class="action"><a href="#" id="<?php echo $id; ?>" class="delete"…
-
1
votes1
answer139
viewsQ: Check Input Size and display label according to expression
I have a function that checks if a field is less than 3 when focusing (clicking) on the input Email. In short: If CPF and RG is less than 3, displays the label[for="label-custom-field2"] and…
-
0
votes2
answers1161
viewsQ: Add CSS class in Input when Loading page
I want to add class="cpf_cnpj" in a input id input-custom-field2 when loading the page, follow the html and javascript I tried to use but without success: <input type="text"…
-
1
votes3
answers3264
viewsQ: Show or Hide Input According to Selected Radio Button
Hello, I have an html where I want to hide or display some fields according to the button radio selected. However it has not worked, I would like a help. Follow the code: <script> $( document…
-
0
votes2
answers53
viewsQ: Problem in product layout in Grid
I have the website MK Graphics where in the part of product category, specifically in Banners and also in Promotions the disposal of the products in Grid is with problem, one or another product…
-
4
votes1
answer111
viewsQ: Sum values in vector and return the value in true condition
I have a doubt in a script where I am doing a quiz, in my last quiz I put 3 response options: A, B and C. Where if the answer is A sum 3 points for option X, 2 points for option Y and 1 point for…
-
1
votes1
answer51
viewsQ: Clear 2 fields of type select when filling a given input field
I need to clear the filled values of 2 fields of the type select when filling in a field of the type input. When filling in the field input by name postcode i want the values of the fields of type…
-
5
votes2
answers986
viewsQ: What is the best practice for integrating external content into my website?
I am developing a site in PHP and I will need to integrate a content that will be on a page of an external site. This page will be with little formatting, without header footer and sidebar, I’ll…
-
0
votes2
answers862
viewsA: Change the color of the panel by hovering the mouse
Skramewell’s answer is very good, but this way will make the change every time we declare the class panel panel-danger. Create a custom class or ID to use in these cases. I will create a class…
-
1
votes4
answers2449
viewsA: HTML 5 Bootstrap google maps
Your second map embed code was in error. I opened Google maps: I did this by accessing the address:…
-
1
votes1
answer328
viewsA: Centralized responsive menu
Replace the class csswhich is currently like this: ul.topnav li {float: left; text-align: center; } For this: ul.topnav li { float: none; text-align: center; display: inline-block; } See in…
-
1
votes1
answer214
viewsA: Page misaligned background (exceeding the limit)
Update of the Response: Visualizing your code I was able to identify the error, the same was found in nav#menu where you put the property left: 350px; this line was the main cause of the error, as…
-
0
votes1
answer57
viewsA: I can’t center the button with css
You need to add the following css to your style sheet: .woocommerce #payment { float: none !important; width: 76% !important; margin: 0 auto; } .form-row.place-order { background-color: transparent;…
-
0
votes1
answer651
viewsA: Text alignment
From what I understand you want to justify the text that will be in the class description. In the case of this code line: <p class="description" style="text-align:…
-
2
votes2
answers6493
views -
0
votes2
answers156
viewsA: Add Woocommerce Hook to add target attribute
I managed to solve with a tip from the author himself of the plugin Woocommerce. The same answered me: remove_action( 'woocommerce_before_shop_loop_item',…
-
1
votes2
answers200
viewsA: How do I work with @media in css?
If you want to remove the underscore from the side menu that appears when clicking the responsive menu icon, you simply have to use css: (downloaded and worked on localhost) @media (max-width:…
-
4
votes5
answers12368
viewsA: Centralizing menu options in bootstrap 3
The solution you used is correct, you just need to add the property !important Simply use the css: .navbar .navbar-nav { display: inline-block; float: none !important; } .navbar .navbar-collapse {…
-
1
votes2
answers156
viewsQ: Add Woocommerce Hook to add target attribute
I need to create a gain in my functions.php to change the function woocommerce_template_loop_product_link_openWoocommerce plugin. The original function is: function…
-
0
votes2
answers8677
viewsQ: Load full page by clicking link within Iframe
Hello, I have an Iframe as follows: <iframe width="230" height="280" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://impressoearte.com/produto-em-destaque/"…