Answer the question
In order to leave comments, you need to log in
How to determine where is a piece of code from PrestaShop?
Kind people, tell me if there is a universal way to find out where the problematic code is, for example, in my case, it seems that they spam through the form, but I can’t figure out where this form is located among the heap of files) how to find out where the fragment code is, can it be done through browser inspector?
https://yadi.sk/i/2yu1ON1S8HN2DA
Answer the question
In order to leave comments, you need to log in
Pseudo elements.
<section>
<div class="container">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</div>
</section>
.container {
width: 500px;
height: 200px;
margin: auto;
background: green;
position: relative;
}
.container:before {
content: '';
display: block;
width: 1000px;
height: 100%;
background: green;
position: absolute;
left: -1000px;
top: 0;
}
section {
overflow-x: hidden;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question