• Hi,

    Im trying to make the Update profile button (in the bottom of the update profil page) into a fixed button so it’s always visible. I’ve tried with css, but didn’t managed to succed. Any clue if it’s possible only with CSS as I don’t want to keep the core untouched?

    Regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi.
    css should looks something like this:

    .profile-php #submit {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
    }
    #profile-page #submit
    {
        position: fixed;
        bottom: 30px;
        right: 0px;
    }

    Put that in a custom CSS plugin and it should work.

    Also I would recommend possibly making it only work on screens bigger then xxx size. For example:

    @media (min-width:500px) {
        #profile-page #submit {
            position: fixed;
            bottom: 30px;
            right: 0px;
        }
    }
    Thread Starter brookjacoby

    (@brookjacoby)

    Thank folks, but doesn’t seem to work over here.
    Have you tried it (I supposed, just asking)?

    :/

    Thank folks, but doesn’t seem to work over here.
    Have you tried it (I supposed, just asking)?

    :/

    I did test mine. It appeared to only work in a custom CSS plugin like https://wordpress.org/plugins/custom-css-js/ and then if you select the “In Admin” option in the custom CSS settings for it.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘How to turn dashboard button fixed?’ is closed to new replies.