tuanphan Posted September 13 Share Posted September 13 To make portfolio links to change color on hover, you can use these CSS to Website Tools > Custom CSS box. If it doesn't work, you can send link to Portfolio Page, I will check it again. #1. With Portfolio Grid Overlay/Grid Simple – Same color on hover a.grid-item:hover h3 { color: #f1f; } #2. With Portfolio Grid Overlay/Grid Simple – Each link will have a different color a.grid-item:nth-child(1):hover h3 { color: #f1f; } a.grid-item:nth-child(2):hover h3 { color: red; } a.grid-item:nth-child(3):hover h3 { color: #fff; } a.grid-item:nth-child(4):hover h3 { color: black; } #3. With Hover Background/Hover Fixed/Hover Follow Cursor – Same Color on hover a.portfolio-hover-item:hover * { color: #f1f; } #4. With Hover Background/Hover Fixed/Hover Follow Cursor – Each link will have a different color on hover a.portfolio-hover-item:nth-child(1):hover * { color: #f1f; } a.portfolio-hover-item:nth-child(2):hover * { color: red; } a.portfolio-hover-item:nth-child(3):hover * { color: #fff; } a.portfolio-hover-item:nth-child(4):hover * { color: #000; } 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!) 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