Jump to content

Help with Landing Page Slideshow Full Screen with Text and Buttons on 7.0

Recommended Posts

Hi guys, 

I am trying to create a Homepage / Landing page on my website and I could use a bit of help. 

I am trying to reach this result https://www.ghostplugins.com/products/super-slideshow-gallery-autoplay-version?peachs_apc=christy-price, however, I am using version 7.0 of Squarespace.

I have created an Index with a Gallery set to Slideshow that became fullscreen following this tutorial https://christyprice.com/blog/full-bleed-slideshow  

 I have only managed to hide the footer and header with this code in the Index Page > Settings > Advanced  

<style>.Header, .Footer, .Mobile-bar{display:none !important; }
</style>

But I would like to bring back the Logo of my site, without bringing back all the header and adding a text and a button to each slide.


I must let you know that I have custom code for the header that is slanted, so when I tried to use .Header-nav in the code above, it brought back the logo with the header background colour and some bug flashing the "slanted part" when the slide changes from one to another.


I will attach some screenshots just to be more clear since this landing page is not online at the moment. 

homeslideshow1.thumb.png.e0d161a584c374816dd52f532b6e229f.png

"Slideshow Fullscreen"

homeslideshow_headernav.thumb.png.c77a5b19f631075b6e73326fcdba3e8f.png

"Slideshow with the .Header-nav in the code"

slanted_design.thumb.png.55ba7f21abf5761d586e47697ed894b9.png

"How the Slanted Header Looks on the rest of the website"

Any help would be highly appreciated, considering I have tried many techniques in tutorials, but with no good result. 


Thanks! 

Link to comment
  • Replies 14
  • Created
  • Last Reply

Top Posters In This Topic

13 hours ago, Urzilli said:

sure, the website is https://www.brunourzi.com/ 

the slideshow is not online yet 

 

Can you share link to page where you added slideshow? If your site is live, you can add a test page & add slideshow there

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment

To bring back logo

Don't remove any code in your current code

Add this to Hometest Page Header

<style>
  header.Header {
    display: block !important;
    background-color: transparent !important;
    position: absolute;
    z-index: 99999;
}
[data-nc-container="bottom-right"] {
    opacity: 0 !important;
}
</style>

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
17 hours ago, tuanphan said:

To bring back logo

Don't remove any code in your current code

Add this to Hometest Page Header

<style>
  header.Header {
    display: block !important;
    background-color: transparent !important;
    position: absolute;
    z-index: 99999;
}
[data-nc-container="bottom-right"] {
    opacity: 0 !important;
}
</style>

 

Thank you, the logo is back now. 
 I noticed that on mobile, the logo is still not visible. 
Now there is a black block under the slideshow. image.thumb.png.34f5b4d3d7a43426c14ca5c20635469f.png

Link to comment

In Page Header, edit this line

.Header, .Footer, .Mobile-bar {
    display: none !important;
}

to this

.Footer {
    display: none !important;
}

Next, edit my code to this

<style>
  header.Header, .Mobile-bar.Mobile-bar--top {
    display: block !important;
    background-color: transparent !important;
    position: absolute;
    z-index: 99999;
}
[data-nc-container="bottom-right"], .Mobile-bar.Mobile-bar--top [data-nc-container="top-right"]{
    opacity: 0 !important;
}
  section#slideshow {
    height: 100vh !important;
}
</style>

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
21 hours ago, tuanphan said:

In Page Header, edit this line

.Header, .Footer, .Mobile-bar {
    display: none !important;
}

to this

.Footer {
    display: none !important;
}

Next, edit my code to this

<style>
  header.Header, .Mobile-bar.Mobile-bar--top {
    display: block !important;
    background-color: transparent !important;
    position: absolute;
    z-index: 99999;
}
[data-nc-container="bottom-right"], .Mobile-bar.Mobile-bar--top [data-nc-container="top-right"]{
    opacity: 0 !important;
}
  section#slideshow {
    height: 100vh !important;
}
</style>

 

Now the logo is visible on mobile, thank you!

Unfortunately, the black bar is still visible.  

It's now also appearing on mobile, while before it wasn't. 

Screenshot_20220527-071516_Chrome.jpg

Link to comment
On 5/27/2022 at 12:16 PM, Urzilli said:

Now the logo is visible on mobile, thank you!

Unfortunately, the black bar is still visible.  

It's now also appearing on mobile, while before it wasn't. 

Screenshot_20220527-071516_Chrome.jpg

Use this new code

<style>
  header.Header, .Mobile-bar.Mobile-bar--top {
    display: block !important;
    background-color: transparent !important;
    position: absolute;
    z-index: 99999;
}
[data-nc-container="bottom-right"], .Mobile-bar.Mobile-bar--top [data-nc-container="top-right"]{ 
    opacity: 0 !important;
}
section#slideshow, section#slideshow .gallery-root, section#slideshow article {
    height: 100vh !important;
}  
  section#slideshow img {
    top: 0 !important;
}
</style>

 

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
17 hours ago, tuanphan said:

Use this new code

<style>
  header.Header, .Mobile-bar.Mobile-bar--top {
    display: block !important;
    background-color: transparent !important;
    position: absolute;
    z-index: 99999;
}
[data-nc-container="bottom-right"], .Mobile-bar.Mobile-bar--top [data-nc-container="top-right"]{ 
    opacity: 0 !important;
}
section#slideshow, section#slideshow .gallery-root, section#slideshow article {
    height: 100vh !important;
}  
  section#slideshow img {
    top: 0 !important;
}
</style>

 

Thank you so much! 

Is there a way to centre better the picture in the slideshow? 

And also to add a button and a text to each slide?

image.thumb.png.974017fceeb2e11c787baee1f98bb3cf.png

Edited by Urzilli
Link to comment
On 5/30/2022 at 8:04 AM, Urzilli said:

Thank you so much! 

Is there a way to centre better the picture in the slideshow? 

And also to add a button and a text to each slide?

image.thumb.png.974017fceeb2e11c787baee1f98bb3cf.png

#1. No idea..

#2. Are you able to add Text & Hyperlink? If yes, you can add it then I will give code to turn text link to button

Email me if you have need any help (free, of course.). Answer within 24 hours. 
Or send to forum message

Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)

Link to comment
17 hours ago, tuanphan said:

#1. No idea..

#2. Are you able to add Text & Hyperlink? If yes, you can add it then I will give code to turn text link to button

1) I see, thank you anyway!

2) No, it doesn't let me add anything to the slideshow. Could we do it with maybe some codes?

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

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