Jump to content

JakeLake

Circle Member
  • Posts

    72
  • Joined

  • Last visited

Everything posted by JakeLake

  1. Site URL: https://www.konsulentoppdrag.no/annonsering Greetings from Norway! So I want a simple, colored frame around item 'on hover' please?
  2. I want it to only to web searches ...ie. not search within the site itself?
  3. Site URL: https://www.konsulentoppdrag.no So I want to add a [button] that executes a google search for pre-set parameters. Eg. go to www.google.no and search 'konsulentoppdrag ledelse' and display results in a new window?
  4. No go; however this being a 'lock screen' page...needs <script>?
  5. Site URL: https://www.starcruiter.no/ So I want the link to be another color and/or bold with hover effect. Nyhetsbrevet for rekrutteringsgründere — StarCruiter Thank you!
  6. INDEED! So if I want the opacity to match upper part (60%)? And I want to keep the original footer?
  7. Didn't do the trick.... also I seem to have a 'missing closing }' error.... @media screen and (max-width:767px) { h1 {font-size: 28px;} } figure.gallery-grid-item { position: relative; } .gallery-caption { position: static; } /* title */ figcaption.gallery-caption .gallery-caption-wrapper p.gallery-caption-content { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: flex; justify-content: center; align-items: center; z-index: 999; padding: 7%; transition: opacity ease 200ms !important; opacity: 0 !important; pointer-events: none; } .gallery-grid-item:hover .gallery-caption-wrapper p.gallery-caption-content { opacity: 1 !important; } /* overlay */ .gallery-grid-item-wrapper a:after { background: #f4f6ea; /* overlay color */ content: ""; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; transition: opacity ease 200ms !important; } .gallery-grid-item:hover .gallery-grid-item-wrapper a:after { opacity: 0.0; } /* remove gap */ figcaption { padding: 0 !important; } .gallery-grid-item img { filter: grayscale(1); -webkit-filter: grayscale(1); } .gallery-grid-item:hover img { filter: grayscale(0); -webkit-filter: grayscale(0); } .gallery-caption p {white-space:pre} .gallery-caption p {text-align:center} .gallery-caption p:first-line {color: blue; font-size: 1rem; font-weight:bold} [data-section-id="61e99335f5b8f86607fd6963"] { .gallery-grid-item { overflow: hidden; img{ -webkit-filter: grayscale(1); transition: 0.2s; } position: relative; .gallery-caption{ opacity: 0 !important; transition-delay: 0ms !important; position: absolute; top: 0; left: 0; bottom: 0; right: 0; padding: 0 !important; pointer-events: none; .gallery-caption-wrapper{ display: flex; justify-content: center; align-items: flex-end; padding-bottom: 10vh; box-sizing: border-box; border: 3px solid #F2BA40; p.gallery-caption-content{ font-size: 20px !important; font-family: poppins !important; color: #F2BA40;-webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #000000; font-weight: 900 !important; line-height: 25px !important; } @media(max-width: 767px){ padding-bottom: 15px !important; p{ font-size: 20px !important; } } } } } .gallery-grid-item:hover { overflow: hidden; img{ -webkit-filter: grayscale(0) !important; transform: scale(1.01); }; .gallery-caption{ opacity: 1 !important; } } } .gallery-grid-item:hover { overflow: hidden; img{ -webkit-filter: grayscale(0) !important; transform: scale(1.01); }; .gallery-caption{ opacity: 1 !important; } } div#page-section-61e99815f067434fa1f1cb8d .span-12 { border: 3px solid #F2BA40; } /* Scrolling text color */ div.marquee-block * { color: green !important; } /* Site background image */ body.homepage { .section-background, .page-section { background: transparent !important; } .section-background img{ visibility: hidden; } & { background-image: url(https://images.squarespace-cdn.com/content/v1/612e107b86a7f92f8a1b9d3a/abd483a8-6166-4a8c-b3ac-e983583e2d0a/Ledige_Konsulentoppdrag.jpg?format=2500w); background-size: cover; background-repeat: no-repeat; background-position: center center; background-color: transparent !important; }
  8. YES - the picture at top with the woman + man... to cover the whole page?
  9. Site URL: https://www.konsulentoppdrag.no So I want the top picture to cover the whole page as backgound please?
  10. Site URL: https://www.konsulentoppdrag.no Greetings! Currently images are displayed 2 on each row (iOS). I need them to be one only please?
  11. Site URL: https://www.konsulentoppdrag.no Greetings - so I want the mobile heading smaller in order to avoid breakup of the word 'konsulentoppdrag'?
  12. No, I want the numbers at the bottom please.
  13. Hello - pw = FlereKonsulenter2025 and countdown on lock screen 🙂 Thank you!
  14. Site URL: https://www.konsulentoppdrag.no/annonsering COUNTDOWN TIMER: So I'm using this script: <style>#countdown{color:#f5f2ec;display:inline-block;text-align:center;font-size:1.0rem} #countdown>div{padding:5px; background:#F2BA40; display:inline-block} #countdown div>span{padding:5px; display:inline-block} </style><center><div id="countdown"><div><span class="days" id="day"></span><div class="text">D:</div></div><div><span class="hours" id="hour"></span><div class="text">T:</div></div><div><span class="minutes" id="minute"></span><div class="text">M:</div></div><div><span class="seconds" id="second"></span><div class="text">S:</div></div></div><p id="timer"></p></center><script>var deadline=new Date("June 1,2022 12:00:00").getTime();var x=setInterval(function(){var now=new Date().getTime();var t=deadline-now;var days=Math.floor(t/(1000*60*60*24));var hours=Math.floor((t%(1000*60*60*24))/(1000*60*60));var minutes=Math.floor((t%(1000*60*60))/(1000*60));var seconds=Math.floor((t%(1000*60))/1000);document.getElementById("day").innerHTML=days;document.getElementById("hour").innerHTML=hours;document.getElementById("minute").innerHTML=minutes;document.getElementById("second").innerHTML=seconds;if(t<0){clearInterval(x);document.getElementById("timer").innerHTML="TIME UP";document.getElementById("day").innerHTML='0';document.getElementById("hour").innerHTML='0';document.getElementById("minute").innerHTML='0';document.getElementById("second").innerHTML='0'}},1000);</script> 1. I want the numerics to the bottom and text to the top? 2. Also make the block 100%transparent?
  15. Site URL: https://www.konsulentoppdrag.no So I want borders around the heading and text - preferably same width as rest of page? PW= FlereKonsulenter2025
  16. EXCELLENT - however, mobile text overflows images....also would like to move the text lower? www.konsulentoppdrag.no >> Presentasjon + new PW = FlereKonsulenter2025
  17. Hi! Text drops behind pictures...apart from bottom where it drops down over footer.
  18. EXCELLENT - thank you so much & enjoy the weekend!
  19. Site URL: https://gold-orca-rg9s.squarespace.com/config/ PW = Antero2022 Please choose 'Sjekkliste' from meny in order to access form. There is a list of radio-buttons which I want to disperse to two columns instead of one long list... Thank you for taking the time to help me with this!
  20. Site URL: https://gold-orca-rg9s.squarespace.com/ PW= ANTERO2022 So when selecting one ot the buttons 'Hvordan' or 'Hvorfor' >>> scrolling those pages makes the heading black ...I need it to be transparent please?
×
×
  • Create New...

Squarespace Webinars

Free online sessions where you’ll learn the basics and refine your Squarespace skills.

Hire a Designer

Stand out online with the help of an experienced designer or developer.