Jump to content

jenniferboddam

Circle Member
  • Posts

    72
  • Joined

  • Last visited

Posts posted by jenniferboddam

  1. I think I need fresh eyes, can anyone explain what isn't working with my css? I have fixed buttons on the sides of my pages. I had them working on desktop and mobile, but tablet wasn't showing up because I had messed around with it too much I think.

    so started over using the side that worked perfect and got it to show up on tablet but now on desktop and tablet one button is not fully to the edge, mobile is fine.

     

    Previous code that some how worked on desktop ( was full width, worked on desktop and mobile wouldn't show up on tablet)

    Quote

    /*STYLES FOR FLOATING BUTTON -PREV */
    #previous-page {
      position: fixed;
      top: 92%;
      right: 1240px;
      transform: rotate(90deg) translateX(0%);
      transform-origin: 100% 0;
      :hover {
      background-color: #F42D27; /* red */
        color: white;}
      z-index: 99999;
    }
    #previous-page a {
      background: #ADAA99;
      color: white;
      display: inline-block;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      font-family: "brother-1816";
      padding: 10px 30px;
    }
    @media only screen and (min-width: 280px) and (max-width: 992px)
    {
      #previous-page{
        bottom: 0;
        right: 280px;
        top: auto;
        transform: none;
      }
      #previous-page a {
        padding: 10px 30px;
      }
    }

     

     

     

    New code that works on mobile, desktop and tablet but now doesn't sit flush to the edge on desktop and tablet..

    Quote

    /*STYLES FOR FLOATING BUTTON (UPDATED)*/
    #previous-page {
      position: fixed;
      top: 75%;
      left: 0px !important;
      transform: rotate(270deg) translateX(0%);
      transform-origin: 100% 0;
      :hover {
      background-color: #F42D27; /* red */
        color: white;}
      z-index: 99999;
    }
    #previous-page a {
      background: #ADAA99;
      color: white;
      display: inline-block;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      font-family: "brother-1816";
      padding: 10px 30px;
    }
    @media screen and (max-width: 1024px) {
      #previous-page {
        bottom: 0;
        top: auto;
        transform: none;
      }
      #previous-page a {
        padding: 10px 30px;
      }
     
      @media screen and (min-width:600px) {
      #previous-page {
        bottom: 0;
        top: auto;
        transform: none;
      }
    }
    }

     

    see screenshot for where its sitting, I cant seem to move it over any further then that on both desktop and tablet?

     

    site is : https://flugelhorn-seahorse-lzrb.squarespace.com/?p

    pw: design123

    buttons are on the portfolio pages

    any suggestions is much appreciated

    Screen Shot 2021-09-23 at 12.22.14 PM.png

  2. Its literally faster for me to delete all my images and re upload them in the exact order I want, it just wont let me rearrange at all i move one and the rest get shuffled. It's driving me crazy. I'm going to put a ticket it to let them know but it probably wont be fixed any time soon.

    7.1 has grown on me but so many things make the work flow sooo unbelievably slow its frustrating.

  3. I'm trying to get several horizontal lines on my site to be full width, not all of them.

    I am using

    #block-yui_3_17_2_1_1631810515381_17071
    { width: 100% !important; }

    to target a specific one, but it only extends to the right and not the left I tried targeting hr as well and it didn't work

    Ideally I'd like to have two lines in some places a few pixels apart, I've attached a screen shot I've tried using

    #block-yui_3_17_2_1_1631812436781_3916
    {width: 100% !important;
      padding-top: -100px !important;}


    as well and I'm not seeing any movement. How do you target the specific lines to be full bleed?

     

    site is https://flugelhorn-seahorse-lzrb.squarespace.com/

    pw: design123

     

     

    Screen Shot 2021-09-16 at 1.17.25 PM.png

  4. Thank you for the break down, for sure clears it up!

    and yeah I figured that might be the case here with this one. I added everything in the way you showed and its just not working. And I think for what I want it for it would be too complicated for squarespace to work with sadly. But good to know how it all works anyways, appreciate you taking the time! 

  5. @iamdavehart ah ok thank you so much!!

    So I was doing the first part correct that you explained, basically everything in the codeblock wrapped in its own tag.

    I'm not sure if I'm fully clear on the dependencies part yet. I attached a screen shot. Is that what you mean? under the JS section and then those three links would be wrapped in <scrip></script> tags underneath the rest inside the code block?

    I did that and it hasn't seemed to change anything to get it to work. I also ask the author of the code pen about using it in squarespace and they said "I think it might be possible if you installed the GSAP and Locomotive libraries via CDN"

    I have no idea what gsap/ locomotive libraries or CDN are, is that what the dependencies are or is it something else?

     

    thank you for the clear explanation so far though! it cleared up what I was initially confused about

     

    Screen Shot 2021-09-03 at 10.43.08 AM.png

  6. I am trying to do sticky next and prev buttons on each of my portfolio pages, I've managed to get them to work on my desktop as well as mobile but when i go to check on my tablet only the one button ("next") shows at fullscreen. The only time I can see the second "prev" button is when its half screen view on the tablet squarespace app.

    I am using this:

    @media only screen and (min-width: 280px) and (max-width: 992px)  to target the sizes,

    the only way it will fit or show up on the mobile is when I do 280 px and I've messed around with it so much now so I'm a bit lost on how to get it to show on a full sized tablet as well any insight is appreciated

    site is :

    https://flugelhorn-seahorse-lzrb.squarespace.com/aqua-de-vida

    pw: design123

  7. I've looked everywhere and I'm still not sure I understand how to take codepen code and add to squarespace. All I've seen is to just add a code block and put it all in the code block? I can get the html and css to work but soon as I try the Js it doesn't work. I was trying to test out this as a practice to try and figure it out.

    https://codepen.io/cameronknight/pen/qBNvrRQ

    on this page https://flugelhorn-seahorse-lzrb.squarespace.com/code-test-page?p?p

    pw: design123

     

    I cant find any clear information on how to integrate codepen to squarespace. If anyone has straight forward instructions or youtube videos / links etc where I can research this more I'd appreciate it. I think I'm just not sure where each part gets placed into squarespace or when to change an id to something squarespace specific? I think I just need it really dumbed down.. lol

  8. @tuanphan

    is there a way to move the line up and down the page horizontal & vertical? I've tried using

    position % but cant see it working

     

    I was using

    Quote

      .page-section[data-section-id="61141142cc01a74ed5bfead4"] {
     
      border-top:1px solid #222;
    }

    but say I want to have a double line like 5px below that one or just move it 10% down into the section what would I target if position isn't working?

×
×
  • 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.