JessCot Posted March 20, 2022 Posted March 20, 2022 (edited) Site URL: https://www.theindependentlist.com/blog Hi, I would like to move the position of the primary meta-tile (blog category) to be on top of the image in the bottom right with a background. I have attached a quick mock up explaining. Thanks Link: https://www.theindependentlist.com/blog Pass: TIL2022 Edited March 20, 2022 by JessCot
tuanphan Posted March 21, 2022 Posted March 21, 2022 Add to Design > Custom CSS /* move categories */ .blog-meta-section { position: absolute; top: 5px; right: 5px; background-color: white; padding: 5px; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
JessCot Posted March 27, 2022 Author Posted March 27, 2022 On 3/22/2022 at 3:09 AM, tuanphan said: Add to Design > Custom CSS /* move categories */ .blog-meta-section { position: absolute; top: 5px; right: 5px; background-color: white; padding: 5px; } Hi, thanks for this it works except for it's displaying in the top right not bottom right. Also, how can I can the text eg. make uppercase? Thanks
tuanphan Posted March 29, 2022 Posted March 29, 2022 On 3/27/2022 at 4:14 PM, JessCot said: Hi, thanks for this it works except for it's displaying in the top right not bottom right. Also, how can I can the text eg. make uppercase? Thanks Try this new code /* move categories */ .blog-meta-section { position: absolute; bottom: 5px; right: 5px; background-color: white; padding: 5px; } .blog-meta-section * { text-transform: uppercase !important; } JessCot 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
theisdahl Posted September 2, 2022 Posted September 2, 2022 This is a great post. Can anyone tell me if this can be done in some way for a blog made with a 7.0 template? I tried the CSS but it only seams to work with 7.1 Thanks so much.
tuanphan Posted September 3, 2022 Posted September 3, 2022 On 9/2/2022 at 5:10 PM, theisdahl said: This is a great post. Can anyone tell me if this can be done in some way for a blog made with a 7.0 template? I tried the CSS but it only seams to work with 7.1 Thanks so much. If you share link to blog page in 7.0, we can check & adjust the code easier. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
tuanphan Posted September 6, 2022 Posted September 6, 2022 On 9/5/2022 at 2:38 PM, theisdahl said: This is the blog where I would like to have a more clear indication between blog posts and Case Studies. https://www.cobira.co/blog Thanks Thank you. You want to move "Case study" to top right of image, like this? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
theisdahl Posted September 7, 2022 Posted September 7, 2022 (edited) Hi Yeah I have made a graphic explaining how here. This is the URL to the blog: Please see screenshot. Thank you very much 💪 Edited December 5, 2023 by theisdahl
theisdahl Posted September 8, 2022 Posted September 8, 2022 Is there anyone out there that has come up with a solution like this for Brine 7.0 theme? Thanks
Solution tuanphan Posted September 9, 2022 Solution Posted September 9, 2022 19 hours ago, theisdahl said: Is there anyone out there that has come up with a solution like this for Brine 7.0 theme? Thanks Add to Design > Custom CSS .Blog-meta.BlogList-item-meta { position: absolute; top: 10px; right: 10px; background-color: black; z-index: 999999; padding-left: 10px; padding-right: 10px; } article { position: relative; } .Blog-meta.BlogList-item-meta * { color: white !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
theisdahl Posted September 12, 2022 Posted September 12, 2022 (edited) On 9/9/2022 at 10:11 AM, tuanphan said: Add to Design > Custom CSS .Blog-meta.BlogList-item-meta { position: absolute; top: 10px; right: 10px; background-color: black; z-index: 999999; padding-left: 10px; padding-right: 10px; } article { position: relative; } .Blog-meta.BlogList-item-meta * { color: white !important; } Thanks @tuanphan This worked great 💪 Cheers Edited September 12, 2022 by theisdahl tuanphan 1
ellen_b Posted August 24 Posted August 24 @tuanphan Hello! I'm looking to add some padding *between* my blog categories. Right now they are touching. I've used the following CSS so far (see screenshot): /* Metadata Pill Style - For Blog - Ghost */ .blog-categories, .blog-author, .blog-date, .blog-meta-item { background: #F2F0ED; border: 2px solid #0560B5; padding: 7px 13px; border-radius: 50px; } .blog-meta-item { display: inline-block !important; margin: 5px !important; } /* Changes metadata categories font */ .blog-meta-section a.blog-categories { font-family: 'Work Sans' !important; } The website is: https://upwardpartners.squarespace.com/?password=brian Thanks so much in advance for any advice!!
Lesum Posted August 24 Posted August 24 @ellen_b You can add this code in Website > Pages > Website Tools > Custom CSS .blog-meta-primary span.blog-categories-list { display: flex !important; gap: 5px; } ellen_b 1 If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment