I tried adding a padding and a margin to move it to the right but it doesn’t work can you help me I can’t understand how I can solve the problem. the template is AVADA, if it can be of help, I’ve really found someone who can help me with everything
Remove the margin-left and margin-right properties and add the flex property justify-content:space-between to the .fusion-builder-row class as per below.
2
Answers
Remove the
margin-left
andmargin-right
properties and add the flex propertyjustify-content:space-between
to the.fusion-builder-row
class as per below.There are multiple ways to solve this:
div
between the elements you want the space and setflex: 1
to that div.Set
margin-right: auto
to the first flex element, ormargin-left: auto
to the second flex element. This will create a space between flex elements.Set
justify-content: space-between
in the flex container.