Home › Forums › Support › Moving profile picture on desktop to right of author bio This topic has 5 replies, 3 voices, and was last updated 1 year, 3 months ago by Fernando. Viewing 6 posts - 1 through 6 (of 6 total) Author Posts June 26, 2022 at 1:23 am #2264596 lewis Hi there, I am looking for a way to move the author profile picture to the left of the author profile. Please see attached. June 26, 2022 at 5:12 am #2264733 DavidStaff Customer Support Hi there, theres a few options, mostly rebuilding that layout and using a Grid Block to place the avatar in its own column. Or with the current layout: 1. Add this CSS: @media(min-width: 1024px) { .pull-avatar { position: relative; } .pull-avatar .dynamic-author-image { position: absolute; top: 30px; left: 30px; } } 2. Select the column Container Block the avatar and profile is in, and in Advacned > Additional CSS Class(es) add: pull-avatar June 26, 2022 at 6:08 pm #2265235 lewis Great, thanks for that, worked! Was just wondering is it possible to push the author image down so it is centered (see attached)? Thanks June 26, 2022 at 8:33 pm #2265302 Fernando Customer Support Hi Lewis, You can try altering the CSS code provided by David into something like this: @media(min-width: 1024px) { .pull-avatar { position: relative; } .pull-avatar .dynamic-author-image { position: absolute; top: 50%; transform: translateY(-50%); left: 30px; } } Hope this helps! June 26, 2022 at 8:58 pm #2265309 lewis Works like a charm! Thanks guys! June 26, 2022 at 10:35 pm #2265353 Fernando Customer Support You’re welcome Lewis! Author Posts Viewing 6 posts - 1 through 6 (of 6 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In