Jump to content

MoeTalks

Member
  • Posts

    130
  • Joined

  • Last visited

Posts posted by MoeTalks

  1. @creedon.  You are not going to believe this but this actually works.

    /* remove footer */
    body[class*="type-blog"].view-list footer.sections {
    display: none;
    }
    If this ever does not work I will take in your suggestion about tagging but I cannot believe it that this works.
     
    thank you for responding.  I appreciate it.
  2. I can remove the site footer from the whole website by using footer {display:none} but I only want the footer on the home page.  there is no option to target the individual post unless I target the item number but I would end up with hundreds of css codes.  Is there a way to target the footer on an individual blog post?  I tried the main collection page which works but it doesn't transfer over to the individual post.  Thanks.

  3. Is it possible to have soundcloud only play once but not replay again if the user goes to another page and comes back?  It may have someone to do with cookies so i enabled third party just to test but nope, as soon as I go away from that page and come back it starts up again.  I don't want users to have that kind of experience.  This may be out of the realm of SS so I totally understand if there is no answer on this one

    PW 2024

    https://www.moetalks.com/media

     

  4. I think this may have fixed it.  I targed the specific section and change the heading from h3 to p and it got smaller.  You can check though.  Still open.

    .design-layout-inline .image-caption-wrapper {
        padding: 0px!important;
      padding-left: 5px!important;
    }
    .design-layout-inline .image-caption-wrapper p {
        margin-top: 1px;
        margin-bottom: 1px;
    }
    }

  5. Because that photos actually smaller on the webpage, it's obsuring some of the photo.  Is there a way to make the that black lightbox smaller.  I have other photos on this page and it's happening  on those as well.  I will just target this collection if I can make this happen.   Thanks in advance.

    image.png.dd5dcff690bba6ac0c9db55825462bbe.png

  6. image.thumb.png.d724ac21204f7bf590550ea8cf19b461.pngAnd after a year this still does not work.  I fight this all the time.  there is clearly room for this text box to come up and yet it doesn't, which then throws off the next paragraph.  How do I send this to the developers or squarespace support because this is absolutely outrageous that paragarphs don't snap back  when rows are empty. 

  7. And honestly mine is just an opinion as well.  I'm sure there are plenty of SS users who are able to enjoy it as is but you are right @creedon, these do need to go to customer support.  I'm going to compile my little list and give it a whirl.  And thanks for all your post and codes.  People like you are much appreciated.  Have a great day.

  8. This is not good news.  And the reason why this is not is blog post are stuck on 7.0.  It does not have the flair not capability to do what fluid engine does.  I cannot add full bleeds images, I can't change grid spacing and in the end, you end up looking like every other blog and yes, there are css customization but my god, I can't keep up with all the css that I have to add just to say remove the extra paragraph space, or I have to visit the inspector for every minor thing and then only to have SS update and have to start all over again.  I still believe I made a very very poor decision when coming to SS but it's one I have to live with now.  I still appreciate the help that people have given me but I need to do better in life.  I just needed to vent.  


  9. I wanted to try using blog post because regular pages don't have categories.  The blog will still work for what I want BUT I cannot achieve a full bleed of the first image.  I've tinkered all day with the code that Becca provided from insidethesquare but I can't make it work.  Apparently, blog posts work in 7.0 and don't have the features that 7.1 has.  This just feels hopeless. 

    PW: 2024


    This is what I created with just a regular page and I like.
    https://www.moetalks.com/film-tv/the-wedding-year

    This is the test blog version.  
    https://www.moetalks.com/film-tv/the-wedding-year


    I've targeted the section because the sql-block-image affected the entire site.  I added the figure.intrinsic just to see if I could target the image and it did. Unfortunately, image bleeds to the right but not to the left.  

    I added a transform:translatex(-12vw) which works until you expand the screen.  This is one that I cannot figure out. 

    Any help would be appreciated.

    [data-section-id="66204140a638fb72fb95e09a"]{
    article .sqs-block-image-figure.intrinsic:nth-child(1){
    padding:0!important;
    position: static;
    width: 100vw;
    transform:translatex(-12vw)
    }  
    article {overflow-x: hidden}
    }

  10. Someone please tell me why o why?  Why is it that every time I feel like i've exhausted all remedies and hope on finding an answer and I reach out to this forum, all of a sudden I find it.  It's taken me 2.5 hours to find this answer AND on top of that, it was from on old circle member in this forum (https://forum.squarespace.com/profile/9595-rwp/)

    Not sure is he is still on but thank you for this code.  Now I have to figure out then what exactly does the margin-width do but that's another day.  This can be closed.

    #header {
        max-width: 1920px;
        margin: auto;
    }
    section.page-section {
        max-width: 1920px;
        margin: auto;
    }
     

  11. I would like all my content to maintain is 1100 max width margin on desktop.  I would like it to do what this site does:  https://www.slashfilm.com/

    No matter how far you stretch this site  in chrome, firefox, etc. the text and all images maintain it's margin.  Currently only my sections and all within the sections seems to maintain the site margin width but header and probably the footer (when I create one) stretches "responsively" and I don't know how to stop that.  Any suggestions?  Thanks.

     

  12. www.moetalks.com

    password 2024

    Start in css at line 62.

     

    I am trying to change the style of the hover links on the site navigation only.  This first part works great.  Just the way I want it on the navigation part on all pages.

    // dropdown background & font colors //
    .header-nav-folder-item {
    background: #0b5394;
    /*  opacity: 100%!important; if you want to make it a little less blue*/
    a { color: white!important; }
    }
    // dropdown hover colors //
    .header-nav-folder-item:hover {
    background: #fac827;
    }
    /* Nav item hover color */
    .header-nav-item a:hover {
        font-weight: bold!important;
      text-decoration:underline!important;
      a { color: white!important; }
    }
    But as soon as I add the below, it overrides the navigation and uses the below for the entire site, including the navigation.

    I tried the #page selector and it works but because I also have markdown blocks that have links in them I would have to create a different code for each markdown block. It works perfectly without the #page selector but it's taking over the navigation.  How do I just target hover navigation links?

    // #page .sqs-block-html //

    a {color: #0b5394!important;
    text-decoration: none!important; 
    }

    // #page .sqs-block-html //

    a:hover  {
         color: #0b5394!important;
      text-decoration: underline!important; 
    font-weight:bold
      }
     

  13. If you look at the photo, this is just a youtube video that has one category showing.  However, I have several categories that I would want people to choose from but it looks like it stays stuck on this page and the meta category this video is assigned to is the only place they can go back to.  Since this is a video gallery page there is not a collection to target, only items page and I cannot target say 30+ plus individual gallery item post.  So, is there a way to re-create my categories at top OR I would even be okay with just a "ALL" next to the meta data that goes back to the main gallery page.  I tried to create an "All" category but it does not show up as the first word on the meta data link.  If I have two other categories the "All" category can show up last.   This is still in it's rough draft so is there another video gallery page that I should choose that will give me this option.  These are going to be nothing more than video links.  And sorry for the long explanation.   Thanks.

    image.thumb.jpeg.347667a3d7649ac9406b746b9c6bdaab.jpeg

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