ThanksForHelpingMe Posted September 28, 2021 Share Posted September 28, 2021 I'm trying to change the portfolio text on my site on mobile only with custom code. The current code below doesn't seem to be working. Can anyone help me out? @media screen and (max-width:640px) { .portfolio-text { color: #d0ff00 !important; } } Link to comment
tuanphan Posted October 2, 2021 Share Posted October 2, 2021 On 9/29/2021 at 1:41 AM, ThanksForHelpingMe said: I'm trying to change the portfolio text on my site on mobile only with custom code. The current code below doesn't seem to be working. Can anyone help me out? @media screen and (max-width:640px) { .portfolio-text { color: #d0ff00 !important; } } Try this code @media screen and (max-width:767px) { .portfolio-text h3 { color: #d0ff00 !important; } } ThanksForHelpingMe 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
ThanksForHelpingMe Posted October 4, 2021 Author Share Posted October 4, 2021 Amazing! Thank you! Is there a way to make the Portfolio Grid Overlay Color different on mobile? This code isn't working? Think you can help? Thanks. @media screen and (max-width:767px) { .portfolio-overlay { color: #000000 !important; } } Link to comment
tuanphan Posted October 6, 2021 Share Posted October 6, 2021 On 10/4/2021 at 10:58 PM, ThanksForHelpingMe said: Amazing! Thank you! Is there a way to make the Portfolio Grid Overlay Color different on mobile? This code isn't working? Think you can help? Thanks. @media screen and (max-width:767px) { .portfolio-overlay { color: #000000 !important; } } overlay is background-color, not color try change color: #000000 !important; to background-color: #000000 !important; If it doesn't work, please share link to your site, we can check easier ThanksForHelpingMe 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
ThanksForHelpingMe Posted October 7, 2021 Author Share Posted October 7, 2021 That worked perfectly. Thank you again!!! Link to comment
geearias Posted December 3, 2021 Share Posted December 3, 2021 @tuanphanwhat would the code be if we're trying to add an overlay to the main image on MOBILE ONLY? Link to comment
tuanphan Posted December 7, 2021 Share Posted December 7, 2021 On 12/4/2021 at 12:38 AM, geearias said: @tuanphanwhat would the code be if we're trying to add an overlay to the main image on MOBILE ONLY? Can you share link to page in screenshot? We can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
geearias Posted December 10, 2021 Share Posted December 10, 2021 https://carlycushine.squarespace.com/ PW: CUSHNIE Link to comment
tuanphan Posted December 12, 2021 Share Posted December 12, 2021 On 12/10/2021 at 10:43 PM, geearias said: https://carlycushine.squarespace.com/ PW: CUSHNIE Add to Design > Custom CSS /* Mobile home top overlay */ @media screen and (max-width:640px) { section#new-page .Index-page-content:after { content: ""; background-color: rgba(255,255,255,0.5); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; } section#new-page .span-12 { position: relative; z-index: 10000000000000; } } geearias 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
geearias Posted December 15, 2021 Share Posted December 15, 2021 On 12/11/2021 at 7:57 PM, tuanphan said: Add to Design > Custom CSS /* Mobile home top overlay */ @media screen and (max-width:640px) { section#new-page .Index-page-content:after { content: ""; background-color: rgba(255,255,255,0.5); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; } section#new-page .span-12 { position: relative; z-index: 10000000000000; } } Thank you. This worked @tuanphan! 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