Home › Forums › Support › Last Updated This topic has 12 replies, 3 voices, and was last updated 3 years, 5 months ago by Ying. Viewing 13 posts - 1 through 13 (of 13 total) Author Posts October 10, 2022 at 6:17 am #2368664 johnzoro I’ve got a plugin that shows when the post was last updated but i want to put it next to date published so it would be date published | shortcode here for post updated any ideas? October 10, 2022 at 8:27 am #2368943 DavidStaff Customer Support Hi there, you shouldn’t require a plugin to display the updated date. Is it possible to see a post on your site, so i can provide the best solution ? October 10, 2022 at 9:27 am #2369021 johnzoro sure October 10, 2022 at 12:18 pm #2369151 YingStaff Customer Support Hi John, Try this CSS: .single-post .posted-on .updated,.single-post .entry-header .entry-meta span.posted-on { display: inline-flex; } time.entry-date.published { order: -1; } .single-post .posted-on .updated:before { content: "|"; padding-left: 10px; padding-right: 10px; } October 10, 2022 at 12:25 pm #2369156 johnzoro Hi Ying, That sorta worked! I added the word “Updated:” after the | Is there a way to make the updated bit bold? Also the spaces look a bit funny [img]https://i.ibb.co/hd62xWL/spaces.png[/img] the green bit indicates the space that’s ok but the red bits show the space looks too big? October 10, 2022 at 2:27 pm #2369232 YingStaff Customer Support Try replacing the pseudo element CSS with this, so there’s no padding on the right, and set the font-weight to bold. .single-post .posted-on .updated:before { content: "| Updated: "; padding-left: 10px; font-weight: bold; } October 11, 2022 at 1:47 am #2369581 johnzoro yeah that’s great! i had a play around and i think i’ve got the look i wanted! thanks October 11, 2022 at 7:12 am #2369866 johnzoro it looks ok, but when i look at it on mobile the layout goes all funny is there a way to maybe make the text smaller on mobile so it’s all on one line? October 11, 2022 at 9:37 am #2370128 YingStaff Customer Support Any chance you can link me to a post again? 🙂 October 11, 2022 at 12:29 pm #2370346 johnzoro okey dokey October 11, 2022 at 5:16 pm #2370480 YingStaff Customer Support Try this CSS: @media (max-width: 768px) { .single-post .entry-header .entry-meta { font-size: 14px; display: flex; flex-direction: column; } } October 12, 2022 at 3:05 am #2370800 johnzoro yeah that works! thanks October 12, 2022 at 9:55 am #2371359 YingStaff Customer Support You are welcome 🙂 Author Posts Viewing 13 posts - 1 through 13 (of 13 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In