Posts by Ciano Barbarossa • 129 points
9 posts
-
0
votes4
answers1457
viewsQ: How to make the screen scroll by clicking on a <a> tag
On the page of a product there are two links: 1 with the amount of comments that already exist for the product and another saying "Write a comment". Further down on the page there is a "tab" tab…
-
1
votes2
answers129
viewsQ: How to use 2 addresses in the if condition ( !strpos( $_SERVER['REQUEST_URI'] , '/') )
What to do to use two addresses at the same time in this condition? OBS.: I need this code not to load the HTML if one or another address is accessed <?php if ( !strpos( $_SERVER['REQUEST_URI'] ,…
-
0
votes1
answer368
viewsQ: How do you make the lightbox appear in front of everything?
I use the Banner do Ebit for customers to be able to evaluate the purchase on the website, however the lightbox it always appears behind all the elements of the page. How to make him appear in front…
-
2
votes1
answer238
viewsQ: How to Detect if the user uses Adblock and make a decision based on the answer?
I have a problem with Banner do Ebit When the user has some Adblocker installed it keeps running in loop and overloads the browser because the page does not stop reloading and hangs I want to…
-
1
votes3
answers1803
viewsA: Putting input is below the label
If what you need is for it to stay at the bottom line you can add a <br> after <label> .passo { width: 30px; height: 30px; border-radius: 50%; line-height: 30px; text-align: center;…
-
1
votes2
answers969
viewsA: How to position one element in relation to another easily?
See a article about W3schools gallery that I imagine to match a lot with what you want to do. To summarize the code would be this: div.gallery{margin:5px;border:1px solid #ccc} div.gallery…
-
0
votes4
answers130
viewsA: How to apply a rule to a specific element?
You can set a class to the image you want to apply the effect to and then, in css, tell which image you want to achieve using the class selector. For example: HTML <img class="filter"…
cssanswered Ciano Barbarossa 129 -
3
votes1
answer51
viewsA: Why do media queries work like this?
Because "the use of Media Queries is "growing", ie first applying styles to devices with smaller resolutions".…
-
0
votes2
answers2295
viewsQ: How to generate JSON files through forms?
I want to store the data that users put into inputs in separate JSON files so I can use it later. Can someone help me?