dipanjanpal Posted November 26, 2023 Posted November 26, 2023 Hello, my current author profile looks kinda like this (attached - Dipanjan Pal) I want it style it better to make it look like my friend Jeroen (attached below) How can I do that with CSS? Link to one of my blog post - https://bluebird-tuba-waaw.squarespace.com/blog/5lgwk48at7h6pe6rm2omsnco6lgyqc Link to Jeroen's blog post - https://jvn.photo/black-friday-weekend-2023/ Also, I'd like the tags to be look like buttons on hover like Jeroen's website. Can anyone please also help me with that?
Solution Web_Solutions Posted November 28, 2023 Solution Posted November 28, 2023 On 11/27/2023 at 2:16 AM, dipanjanpal said: Hello, my current author profile looks kinda like this (attached - Dipanjan Pal) I want it style it better to make it look like my friend Jeroen (attached below) How can I do that with CSS? Link to one of my blog post - https://bluebird-tuba-waaw.squarespace.com/blog/5lgwk48at7h6pe6rm2omsnco6lgyqc Link to Jeroen's blog post - https://jvn.photo/black-friday-weekend-2023/ Also, I'd like the tags to be look like buttons on hover like Jeroen's website. Can anyone please also help me with that? Here is the code .blog-item-author-profile-wrapper { background: rgba(0,0,0,.04); padding: 20px 30px 30px !important; .author-name { font-size: 22px !important; } .author-bio p { font-size: 16px !important; font-weight: 400 !important; } .author-avatar { width: 60px !important; height: 60px !important; } .author-avatar img { width: 100% !important; height: 100% !important; left: 0 !important; } } @media only screen and (min-width: 691px) { .blog-item-author-profile-wrapper { padding-left: 140px !important; padding-top: 30px !important; align-items: flex-start !important; position: relative !important; } .blog-item-author-profile-wrapper *{ text-align: left !important; } .author-name { margin-top: 0 !important; } .blog-item-author-profile-wrapper .author-avatar { position: absolute !important; left: 30px !important; top: 50% !important; transform: translateY(-50%); margin: 0 !important; width: 80px !important; height: 80px !important; } } sayreambrosio, tuanphan and MindfulDesign 3 If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible.
dipanjanpal Posted November 28, 2023 Author Posted November 28, 2023 (edited) 2 hours ago, Web_Solutions said: Here is the code .blog-item-author-profile-wrapper { background: rgba(0,0,0,.04); padding: 20px 30px 30px !important; .author-name { font-size: 22px !important; } .author-bio p { font-size: 16px !important; font-weight: 400 !important; } .author-avatar { width: 60px !important; height: 60px !important; } .author-avatar img { width: 100% !important; height: 100% !important; left: 0 !important; } } @media only screen and (min-width: 691px) { .blog-item-author-profile-wrapper { padding-left: 140px !important; padding-top: 30px !important; align-items: flex-start !important; position: relative !important; } .blog-item-author-profile-wrapper *{ text-align: left !important; } .author-name { margin-top: 0 !important; } .blog-item-author-profile-wrapper .author-avatar { position: absolute !important; left: 30px !important; top: 50% !important; transform: translateY(-50%); margin: 0 !important; width: 80px !important; height: 80px !important; } } Thank you so much for your solution! Is there any way to add "Written by" before my name and make my name in bold letters? Also, how can I add the social icons in the bottom? Edited November 28, 2023 by dipanjanpal
Web_Solutions Posted November 28, 2023 Posted November 28, 2023 2 hours ago, dipanjanpal said: Thank you so much for your solution! Is there any way to add "Written by" before my name and make my name in bold letters? Also, how can I add the social icons in the bottom? See the first attached image. Replace the marked code with the code below. .author-name { font-size: 22px !important; font-weight: bold; } .author-name:before { content: "Written by "; font-weight: normal !important; } If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment