Home › Forums › Support › Help with formatting author profile picture in post template This topic has 7 replies, 2 voices, and was last updated 3 years, 3 months ago by Fernando. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts January 23, 2023 at 7:22 pm #2506614 Matthew Hello, Please see my website below. I would like to format the author profile picture to look the same as this… https://www.elliott.org/ultimate-consumer-guides-smart-travelers/take-that-back-the-ultimate-guide-to-a-product-return/ i.e. https://ibb.co/YyjvNW1 Cheers, Matthew January 23, 2023 at 7:57 pm #2506629 Fernando Customer Support Hi Matthew, The simplest way you can visually build your own Post Meta is by using a Block Element: https://docs.generatepress.com/article/block-element-post-meta-template/ Alternatively, you can try adding this snippet: add_filter('generate_header_entry_meta_items', function($output){ if(is_single()){ return array( 'author', 'date', ); } return $output; }, 10); Adding PHP: https://docs.generatepress.com/article/adding-php/#code-snippets Then, we’ll try achieving it through custom CSS. January 23, 2023 at 8:10 pm #2506630 Matthew Many thanks Fernando, the snippet code did the trick. One more quick question, please …how can I increase the font size of that section i.e. the author name and published date? Cheers, Matthew January 23, 2023 at 8:14 pm #2506632 Fernando Customer Support You can create a new Typography setting in Appearance > Customize > Typography. Set the Target Element to Custom – .single-post .entry-meta. Example: https://share.getcloudapp.com/o0u9Ol9E Reference: https://docs.generatepress.com/article/dynamic-typography-overview/ January 23, 2023 at 8:16 pm #2506633 Matthew Perfect, thanks again Fernando 🙂 January 23, 2023 at 8:29 pm #2506637 Fernando Customer Support You’re welcome, Matthew! If you still want to change the alignment of the text, here’s something you can try adding in Appearance > Customize > Additional CSS: .single-post .entry-meta { display: flex; flex-direction: column; flex-wrap: wrap; height: 96px; justify-content: center; } .single-post .entry-meta { width: fit-content; } January 23, 2023 at 8:32 pm #2506640 Matthew Fantastic, thanks Fernando …just what I was looking for 🙂 January 23, 2023 at 8:37 pm #2506645 Fernando Customer Support You’re welcome, Matthew! Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In