Posts by Gabriel Souza • 297 points
20 posts
-
0
votes3
answers195
viewsA: Carousel slide.bs.Carousel event does not work
You are calling 2 versions of jQuery and you are also incorrectly closing one of the script tags. As follows it will work: <link rel="stylesheet"…
-
0
votes1
answer33
viewsA: Select custom with conflicting script
I found that the default select has a delay of 100 ms to start, so to make my script work properly, I needed to add these lines. $(document).ready(function(){ setTimeout(function(){ // Meu script },…
-
0
votes1
answer33
viewsQ: Select custom with conflicting script
So I have a script to change the default select of Woocommerce variations, so far so good, the problem is when a variation is out of stock, the custom select should have the same options as the…
-
0
votes3
answers1798
viewsQ: Make Bootstrap columns fill 100% of the Row width
I think it’s something simple, but since I’m a beginner in Bootstrap I haven’t figured out how to do it. What I want is for the columns to fill the full width of Row, I put a red border on the sides…
-
1
votes2
answers319
viewsQ: Hide div with fadeToggle when click out of it
There is a read with the id 'user-login-menu' that when clicked opens a div with a sub-menu, but it is only possible to close it by clicking again on the li. I would like it to be possible to close…
-
1
votes0
answers80
viewsQ: Smooth transition from a Sticky menu
Created a Sticky menu, works perfectly, but the transition is not smooth, as I do to add? function stick() { if ($(this).scrollTop() > 140){ $('.header').addClass("sticky");…
-
0
votes2
answers242
viewsA: Double Dropdown Menu does not show the second dropdown
I added the following lines and solved it. I also made some more design modifications. .dropdown-content .dropdown-content-2:hover, .dropdown-content a.drop-secundario:hover+.dropdown-content-2 {…
-
0
votes2
answers242
viewsQ: Double Dropdown Menu does not show the second dropdown
The first dropdown is working normally, but the second one is not working at all. I’ve tried to specify more classes, but there’s no way, I think it’s something very simple that I’m missing. I’d be…
-
1
votes1
answer381
viewsQ: height: vh; does not work as it should in Chrome mobile
Chrome is not adapting content in the viewport In Firefox and Opera mini is adapting perfectly Chrome Firefox Opera mini Chrome can adapt like Firefox and Opera? .intro-noticias { width: 100%;…
-
0
votes2
answers162
viewsA: Changing elements display in another element’s Hover does not work as it should
I added a div with the intro-slides class, modified the script and worked $(".intro-slides").mouseenter(function() { $('.slide-prev,.slide-next').css("display", "block"); });…
-
0
votes2
answers162
viewsQ: Changing elements display in another element’s Hover does not work as it should
I want to change the display of the elements with the classes . slide-Prev and . slide-next. Since I’m using a slide plugin, it automatically creates the elements of browsing outside ul, so the only…
-
0
votes0
answers149
viewsQ: Change Previous and Next text in pagination links
I set in functions.php the parameters of the pagination and gave an echo where I want the links to appear, so far so good. The problem is that the texts of Previous and next are not modifying. I put…
-
3
votes2
answers964
viewsQ: Leave image with the <img> proportional tag in relation to div
I want to leave the proportional image inside the div, but I’m not getting it. The only "solution" I have found so far is to put Object-fit: cover, but this style is not compatible with many…
-
0
votes1
answer96
viewsA: Static page paging not working
I managed to solve in a very simple way, just modify the first line parameters to 'page' instead of 'paged' (get_query_var('page')) ? get_query_var('page') : 1; This link talks more about…
-
1
votes1
answer96
viewsQ: Static page paging not working
The latest posts and the link paging are appearing, but when I click on link, the URL changes to /page/2/ but gets the same content from the first page. Does anyone know how I can solve? <?php…
-
1
votes0
answers149
viewsQ: Facebook iframe with higher height in Firefox
I set the height to 230px, but in Firefox it gets bigger than in Chrome, IE and Edge This ends up interfering in the iframe margin with the element below, which gets smaller in Firefox Can you tell…
-
3
votes1
answer264
viewsQ: Dropdown div menu with different width in browsers
I dropdown menu and for some reason the width of the div is different in the browsers The div class is the dropdown-content Follow the code and prints .header-menu { height: auto; float: right;…
-
0
votes1
answer47
viewsQ: Sticky menu with problem updating page in Firefox
The Sticky menu I made has a problem only in Firefox. If I update the page with the Sticky menu active, that is, when the scroll bar is not at the beginning of the screen, the menu goes back to the…
-
2
votes2
answers158
viewsQ: I can’t talk with specific class in css
I made a menu and now I’m trying to style a dropdown menu, but I’m not getting through to a of .dropdown-content. I realized that the .header-menu ul li a is hierarchically above .dropdown-content…
-
5
votes1
answer811
viewsQ: Menu with space between li’s
My menu has spaces between the li’s. I’m using a reset css, but even though I didn’t need to already tried to put margin: 0; and padding: 0; na ul and ul li and it didn’t work, if you can help me I…