Jump to content

creedon

Circle Member
  • Posts

    9,484
  • Joined

  • Last visited

  • Days Won

    79

Posts posted by creedon

  1. Quote

    Any chance you might be shed some light onto this for me too?

    I do! The issue is a non-printing character has gotten into the mix and causes the ruleset to fail. If you look at the ruleset you will notice two characters between the selector and the right curly bracket ( { ).

    Select the two characters and type the space character. Or, you can use the following.

    @media screen and ( min-width : 768px ) and ( max-width : 799px ) {
        
      .header .header-announcement-bar-wrapper {
      
        padding : 3vw;
        
        }
        
      }

    Also note I change the 798 to 799.

    Let us know how it goes.

  2. 17 hours ago, mimibeemee said:

    Basically any posts beyond the first pages are not linking correctly when I click on the image. Do you know how to fix this issue?

    Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

     

  3. 2 hours ago, aniloez said:

    the arrow is showing when including the code, the subsequent section is not shown when clicking on the arrow.

    It appears the jQuery you have installed is a customized version, not the full version. Please follow my jQuery install instructions replacing your jQuery install.

  4. 2 hours ago, HappyBiz said:

    I'm having issues with this. I removed the code yet don't get my header back

    Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

  5. This is a multi-part solution.

    The first issue is that you can't address the default text of the button with CSS. To be able to address each word with CSS they need to be wrapped with a tag. In this case a span tag.

    Please see the following.

    Header CTA Buttons Each Word Span Tag Add

    The second issue is creating some CSS to address the now spanned words.

    First remove the following existing CSS, make a copy somewhere.

    .header-actions-action a,.header-menu-cta a {
      font-family: "Karla" !important;
    }

    Add the following example CSS. Of course you will want to change the declarations to meet your need.

    /* desktop */
    
    #siteWrapper .header-actions-action--cta .btn span:nth-child( 1 ),
    
    /* mobile */
    
    #siteWrapper .header-menu-cta .btn span:nth-child( 1 )
    
    {
    
      font-family : serif;
          
     }

    This example code is specific to the poster's need.

    Let me know how it goes.

  6. 19 hours ago, Charlottenz said:

    Is one syntax error going to affect all the code from working?

    It depends on the error and what the language of the code is.

    In this case I suspect that everything after this error would not work. I haven't spent time testing because it's just easier to fix the error knowing it's there.

  7. 53 minutes ago, Aurelia said:

    Is there a way to do this w code on older templates that don't show the "design" tab in accordion style popup?

    In my v7.0 test site using the Brine template family there is a Design tab for the Accordion block and it have some Divider controls.

    Screenshot2024-04-03at8_46_32PM.thumb.png.ac5c0db8b8a522c66664cf36ed836bac.png

  8. 37 minutes ago, RickRich said:

    I need to reference an image from my asset library in an email signature, how do I get the image URL?

    If this an infrequent need you can bring up the context menu for the image.

    Screenshot2024-04-02at4_05_53PM.thumb.png.80cb682274502394497438b99af7740c.png

    Then get rid of everything including the ? near the end of the URL.

    ?content-type=image%2Fpng

    Let us know how it goes.

  9. 1 hour ago, SarahFrancesBrandCo said:

    Can you help me understand HOW to keep the product title and description though?

    Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

     

  10. v7.0 sites use a single editor for both desktop and mobile.

    Your issue is probably due to unintentional nesting of blocks.

    ScreenShot2024-03-31at6_20_54PM.thumb.png.95956dfb315f1a3392e9d4aaaa7de26c.png

     

    Notice how the two coming soons are not on a row on their own. They are laid out in a column under the videos.

    The way columns wrap when viewed on mobile is the ones on the right collapse under columns that precede them.

    So on desktop you have...

    column 1    column 2

    ...and on mobile you get...

    column 1

    column 2

    So you can see with thee layout you have you get an interleaving you probably don't want.

    To reduce unwanted nesting of blocks I use the technique of using line blocks that span the whole width. Something like the following.

    Line block

    block    block

    Line block

    block    block

    Line block

    block    block

    Line block

    Then when everything is laid out the way I want, I remove the line blocks.

    Let us know how it goes.

  11. A  slideshow presentation can be had by using the Initial Gallery View tweak.

    ScreenShot2024-03-31at5_29_29PM.png.e52557e9261a5983a81499861bc05571.png

    Making the thumbnails appear below the slides is possible, I think.

    It would require a bit of JavaScript and a not insubstantial visual restructuring of the current thumbnail content with some CSS.

    I know of no code that currently does this.

  12. Please post the URL for a page on your site where we can see your issue. For us to see the URL you need to include the link in the content of your post. The URL field the forum software provides is not shown to us.

    A link to the backend of the your site won’t work for us, i.e. a URL that contains /config/.

    Please set up a site-wide password, if your site is not public and you've not already done so.

    Post the password here.

    Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site.

    Please read the site-wide password and how to share a link documentation to understand how they work.

    You may find How to post a forum question post useful.

    We can then take a look at your issue.

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