I want to shift the p elements to the left and how can I add a checkmark in front of the p elements, for example, before adding a picture, but it doesn’t resize, how else can I do that?
If you want it to look like this.
Then you need to do this:
.block_7_inner p {
text-align: left;
justify-self:self-start;
padding: 0 0 0 1rem;
display:flex;
}
.block_7_inner p::before {
/* checkmark entity */
content: "\2713";
color: red;
margin-right:5px;
}
2 Likes
yes it helped thanks everything works))
1 Like
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.