Posts by Lucas Henrique • 343 points
10 posts
-
10
votes2
answers7290
viewsQ: What is the importance of Integrity and Crossorigin attributes?
I have been doing some research, but I still have this doubt. Currently some frameworks, your link and script are coming with attributes integrity and crossorigin. Ex.: <link rel="stylesheet"…
-
1
votes1
answer315
viewsQ: Is it possible to display a different image for each Category type in Wordpress?
I have a Wordpress page with some posts, and they present some categories, but we will define them as: cat1, cat2 and cat3. Within the loop of Wordpress are displayed three posts, each with its own…
-
-1
votes3
answers1931
viewsA: Breaking Bootstrap Columns
You just need to create one row father and two row daughters inside it. This defines that within a row (with X columns) you will have two more rows inside. Following example: <div…
-
0
votes3
answers1026
viewsA: How to make an element with position Fixed stop "cutting" its contents when resizing?
Let’s go over the specs of what a position: fixed;: The position: Fixed; will fix the position of the element in the coordinate you set. As the page is scrolled, the element remains fixed at the…
-
0
votes1
answer169
viewsA: Why does "background-size" make images have a serrated edge in IE?
Add Rendering properties to the class your image is in. .classe{ -ms-interpolation-mode: nearest-neighbor; } In the CSS-Tricks has a nice tutorial on image-rendering.…
-
1
votes3
answers221
viewsA: cep - fields disabled for user
Following the previous answers, you just need to add a method disabled for the tag input, but by recommendation, if the information generated is not correct, it would be interesting that the user…
-
3
votes1
answer66
viewsQ: Can I add a different number for each <li> created in a for?
I have a carousel in bootstrap and to call the wordpress posts inside it, I have a for within the <div class="carousel-inner">. The for can create the posts, but I’m not able to include the…
-
0
votes2
answers145
viewsQ: Removing a tab-content and adding active class to content
I have a tablist on the page who is responsible for picking up some content through a function. When that function does not return any value, the right is to give a hide in that list and in your…
-
2
votes3
answers988
viewsQ: Is it possible to include more than one.php file in the path of a Require?
I didn’t know the best way to ask that question, but I came across the following question... Inside a document, I have some require_once (that I was mounting for a while), in the code they are this…
-
1
votes1
answer220
viewsQ: Is it possible to configure a Rewrite Rule in AWS without changing the directories?
I have a small problem since I set up the AWS. The fact is that it came a little prepared when it fell into my hand. It is configured to save in the domain.com.br/site/wordpress, and when trying to…