Switch position of elements in the footer [closed]

You can solve this by using Flexbox. Add the following CSS code somewhere in your theme stylesheet or via dashboard Appearance > Customize > Additional CSS

.fusion-copyright-content {
  display: flex !important;
  flex-direction: row-reverse !important;
}

.fusion-copyright-content .fusion-social-links-footer {
  margin-right: auto !important;
}