skip to Main Content

enter image description here

enter image description here

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

Thank you

2

Answers


  1. 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.

    .fusion-builder-row {
       justify-content: space-between;
    }
    
    Login or Signup to reply.
  2. There are multiple ways to solve this:

    1. Create an empty div between the elements you want the space and set flex: 1 to that div.
    <div class="element1">...</div>
    <div class="empty-div"</div>
    <div class="element2">...</div>
    
    .empty-div {
      flex: 1
    }
    
    1. Set margin-right: auto to the first flex element, or margin-left: auto to the second flex element. This will create a space between flex elements.

    2. Set justify-content: space-between in the flex container.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search