MASS86 Posted June 25, 2023 Share Posted June 25, 2023 Hello, I am trying to change the titles of my grid gallery, I have no experience in CSS. I would like the project number to have a different style and size than the project title. I have attached an image of how I want it to look. Please help 🙂 Link to comment
tuanphan Posted June 25, 2023 Share Posted June 25, 2023 Hi, Can you share link to this page? 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
MASS86 Posted June 26, 2023 Author Share Posted June 26, 2023 12 hours ago, tuanphan said: Hi, Can you share link to this page? Hi tuanphan, the link is:  beagle-sprout-jcp9.squarespace.com pass: uxuisitebuild2023 Thank you so much!!! Link to comment
tuanphan Posted June 26, 2023 Share Posted June 26, 2023 Add to Design > Custom CSS /* Counter code */ .portfolio-grid-basic .grid-item h3:before { content: "0"counter(portfolio-hover-item-counter)"."; text-transform: uppercase; color: red; } .portfolio-grid-basic .grid-item { counter-increment: portfolio-hover-item-counter; position: relative; }  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
MASS86 Posted June 27, 2023 Author Share Posted June 27, 2023 21 hours ago, tuanphan said: Add to Design > Custom CSS /* Counter code */ .portfolio-grid-basic .grid-item h3:before { content: "0"counter(portfolio-hover-item-counter)"."; text-transform: uppercase; color: red; } .portfolio-grid-basic .grid-item { counter-increment: portfolio-hover-item-counter; position: relative; } Â Thank you so much it worked!!!! Just one small thing, how do I add a space between the number and the word? I tried to put "right: 30px" after position but it moves the entire portfolio grid. Link to comment
tuanphan Posted June 27, 2023 Share Posted June 27, 2023 Add padding-right into this code .portfolio-grid-basic .grid-item h3:before { content: "0" counter(portfolio-hover-item-counter) "."; text-transform: uppercase; color: #000; font-size: 50px; -webkit-text-fill-color: transparent; -webkit-text-stroke-width: 2px; -webkit-text-stroke-color: #ed6b2d; padding-right: 20px; }  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