Post To Context - Swop the "Post" and "X" buttons around

In Post To Context, how can I Swop the "Post" and "X" (Close) buttons around?

In all actions "Discussions, Updates, Videos, News, Product, Stream, ..." I would like the "Post/Submit button" on the RIGHT and the "Close button" on the LEFT

Is this possible?

  • 290
  • More
Replies (3)
    • Hello @InPage !

      It is possible to do this via the Custom Styles area of your template. Paste there this code:

      -form-element-tlb_do_submit .bx-form-input-wrapper-submit {

      float: right;

      }

      .sys-cpf-close {

      left: 0;

      }

      This code will work for the Timeline Update form. If you need to change it for all submit buttons then remove -form-element-tlb_do_submit part.

      • I added the code without the " #bx-form-element-tlb_do_submit" part. Now when posting a comment the post button is behind the photo button in the Protean template.

        image_transcoder.php?o=sys_images_editor&h=1606&dpx=2&t=1696626761

        • For the cases when the line has more than two buttons you may add margins for the proper input area like:

          -form-element-cmt_submit .bx-form-input-wrapper-submit {

          margin-right: 110px;

          }

          Login or Join to comment.