Jump to content

pgcreativedesigns

Circle Member
  • Posts

    32
  • Joined

  • Last visited

Posts posted by pgcreativedesigns

  1. 15 hours ago, tuanphan said:

    Try this CSS

    /* Login button */
    .user-accounts-text-link {
        padding: unset !important;
    }
    .user-accounts-text-link span {
        font-size: calc(~".9 * 1rem") !important;
        font-family: brandon-grotesque;
        font-weight: 500;
        font-style: normal;
        letter-spacing: 0em;
        text-transform: uppercase;
        line-height: 1.2em;
        padding: 0.96em 1.6032em !important;
        display: inline-block;
    }

     

    Hi @tuanphan! This definitely seemed to work a bit. For some reason the padding still isn't matching the Join For Free button on mobile... is there a way to fix this so these are both the same size? Thanks!

  2. On 5/16/2021 at 4:47 AM, tuanphan said:

    Add to Design > Custom CSS

    
    /* Mobile-coaching order */
    @media screen and (max-width:767px) {
    div#block-yui_3_17_2_1_1620578529243_15151+.row {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
            -ms-flex-direction: column !important;
                flex-direction: column !important;
    }
    }

     

    @tuanphan this worked perfectly for this page!! Is there a way to also reorder the text on the masterclass page on mobile to be in number order? Thanks so much for your help! 

  3. 19 hours ago, tuanphan said:

    Add to Design > Custom CSS (for Coach)

    
    @media screen and (max-width:767px) {
    div#block-yui_3_17_2_1_1620578529243_15151+.row {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
            -ms-flex-direction: column !important;
                flex-direction: column !important;
    }
    }

    If it works, I will check another page

    @tuanphan this worked PERFECTLY! Thank you. I would love to also fix it on the masterclass page. Let me know if there's a good way to do it there also. 

  4. 43 minutes ago, tuanphan said:

    Hi. Which pages? Can you share link/screenshot?

    Absolutely @tuanphan! It is www.patrickgarr.com/coach under "Offerings" and the images reverse on mobile. The same thing happens on www.patrickgarr.com/masterclasses under "The Bootcamp" where the text reverses on mobile. I'd love to have these in order! I have screenshots below for both.

    Screen Shot 2021-05-13 at 9.50.46 PM.png

    Screen Shot 2021-05-13 at 9.51.00 PM.png

    Screen Shot 2021-05-13 at 9.49.57 PM.png

    Screen Shot 2021-05-13 at 9.50.10 PM.png

  5. On 5/11/2021 at 11:15 PM, tuanphan said:

    I see 2 small problems. Do you need to fix these?

    Site URL – https://www.patrickgarr.com/

    1. (Mobile/Tablet) 2 icons on bottom right overlap. Want to add a space?

    patrickgarr.com-01-min.png

    2. (All devices-Blog posts) Comment text is white color. Want to change it to black?

    patrickgarr.com-02-min.png

    Hey there @tuanphan! I was actually able to fix the blog comment box font issue with some css. All should look good on that. Thank you for alerting me of that issue! 

     

    Do you have any ideas how to fix the mobile issues of text/image order on the other two pages above or the spacing issue you noticed? I'd love to get those fixed asap before launching. Thanks again for your help!

  6. @tuanphan Yes! That would be perfect. I didn’t catch those. Thank you for noticing those. I’d love to fix both. 
     

    I also noticed that on patrickgarr.com/coach (under offerings) and patrickgarr.com/masterclasses (under bootcamp), the icons/text are out of order on mobile and stacking incorrectly. Is there a way to also fix that issue? 
     

    Thank you for all your help! 

  7. On 5/9/2021 at 12:20 PM, pgcreativedesigns said:

    Hi @tuanphan! Is there any easy way to also do this on this page (https://www.patrickgarr.com/coach under offerings) to keep the desktop order of icons on mobile? And also here (https://www.patrickgarr.com/masterclasses under bootcamp) to keep the numbering in order for mobile? 

    I also had this issue with image icons under a member area (trying to keep them in correct sequence of weeks on mobile). Is there any easy way to adjust this code for different sections?

    Thank you TREMENDOUSLY for any and all advice! 

    PG

    If anyone has insight on this, I'd love any tips! I still haven't found a solution just yet. Thanks for any and all advice!

  8. On 4/17/2021 at 4:46 AM, tuanphan said:

    Add to Design > Custom CSS

    
    /* Coaching order mobile */
    @media screen and (max-width:767px) {
    div#sqpl-tab-group-0 .sqpl-tab-content .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    }

     

    Hi @tuanphan! Is there any easy way to also do this on this page (https://www.patrickgarr.com/coach under offerings) to keep the desktop order of icons on mobile? And also here (https://www.patrickgarr.com/masterclasses under bootcamp) to keep the numbering in order for mobile? 

    I also had this issue with image icons under a member area (trying to keep them in correct sequence of weeks on mobile). Is there any easy way to adjust this code for different sections?

    Thank you TREMENDOUSLY for any and all advice! 

    PG

  9. On 4/17/2021 at 4:46 AM, tuanphan said:

    Add to Design > Custom CSS

    
    /* Coaching order mobile */
    @media screen and (max-width:767px) {
    div#sqpl-tab-group-0 .sqpl-tab-content .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    }

     

    @tuanphan This worked PERFECTLY! Thank you tremendously for your help!

  10. On 4/11/2021 at 10:26 PM, tuanphan said:

    Hi,

    Add left: 50%; and transform translate -50%

    
    .user-accounts-link .user-accounts-text-link span.unauth:before {
        visibility: visible;
        content: "LOGIN";
        font-size: inherit;
        color: #fff;
        font-family: Lato;
        text-align: center !important;
        position: absolute;
        font-weight: 400;
        letter-spacing: .02em;
        left: 50%;
        transform: translateX(-50%);
    }

     

    This worked perfectly @tuanphan! Thank you so much!

  11. On 4/5/2021 at 6:22 AM, tuanphan said:

    Add this to Last Line in Code Injection Footer

    
    <script>
    $(document).ready(function() { 
    		$('.header-menu-nav .user-accounts-link').insertAfter('.header-menu-cta>a:first-child');
    	});
    </script>

     

    This worked perfectly! Thank you so much @tuanphan. Do you know if there's a way to now center the text and that button only on the mobile navigation to match the contact? Thank you!!

    Screen Shot 2021-04-06 at 1.54.22 PM.png

  12. Hi @tuanphan! Is there any way to edit the customer account login order on mobile? I have used css to change it to a button and moved the placement on desktop (to be after the contact button). However, I still can't get the placement of the login link on mobile to follow the contact button? I'd also love the button size/styling to match the contact button on mobile? I attached an image below. The link to the site is https://www.jennifergellerfitness.com/home. Thanks for any insight! I greatly appreciate it. 

    Screen Shot 2021-04-03 at 9.50.30 PM.png

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