blackcat2226 Posted August 31 Share Posted August 31 Hello, is there a way to add an outline2 (so the text looks more like a button on the read more text on the blog page. Here is the specific page I'm working with: https://www.michaelaraehagel.com/writing Also, is there a way to have the button change color on hover? Link to comment
Solution Lesum Posted August 31 Solution Share Posted August 31 @blackcat2226 You can try this code snippet: .tweak-blog-basic-grid-text-alignment-center .blog-basic-grid .blog-basic-grid--container .blog-more-link { border: 1px solid #155ac1; padding-top: 0.4rem !important; padding-left: 0.5rem !important; padding-right: 0.5rem !important; margin-top: 10px !important; } .tweak-blog-basic-grid-text-alignment-center .blog-basic-grid .blog-basic-grid--container .blog-more-link:hover { background-color: #155ac1; } 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? Link to comment
blackcat2226 Posted August 31 Author Share Posted August 31 is there a way to have the boder and the background color pink, then on hover change the border and backgrond color to orange"? Lesum 1 Link to comment
Lesum Posted August 31 Share Posted August 31 Sure. Here's the updated code: .tweak-blog-basic-grid-text-alignment-center .blog-basic-grid .blog-basic-grid--container .blog-more-link { border: 1px solid #ffacec; background-color: #ffacec; color: #155ac1 !important; padding-top: 0.4rem !important; padding-left: 0.5rem !important; padding-right: 0.5rem !important; margin-top: 10px !important; } .tweak-blog-basic-grid-text-alignment-center .blog-basic-grid .blog-basic-grid--container .blog-more-link:hover { border: 1px solid #FF954D; background-color: #FF954D; color: #155ac1 !important; } 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? Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment