• Resolved enkoes

    (@enkoes)


    Hi, can I use CSS to swap the location of a bullet selection with another for “Show my last login?” in Privacy tab of Account page (see screenshot below)? It seems that the selection for “Show my last login?” isn’t consistent with “Show my online status?”.

    View post on imgur.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support yuriinalivaiko

    (@yuriinalivaiko)

    Hello @enkoes

    Yes, you can do this using flex styles. Try this CSS code:

    .um-field.um-field-um_show_last_login .um-field-area {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    }
    .um-field.um-field-um_show_last_login .um-field-area .um-clear {
    display: none;
    }

    With this code you should see the “Yes” item first.

    Regards

    Thread Starter enkoes

    (@enkoes)

    Thanks a lot! The code works perfectly. ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.