Jump to content

Add button to Gallery Image

Recommended Posts

Posted

I want to add a button below text to a gallery image (like the attached screenshot). The website I'm working on is https://www.thejupegroup.com (password is: RJupe10). I want to add a button to subscribe under the text in the "Connect with Us" block.

Right now I have that block and the image to the left of it set up as side-by-side gallery images. I'm using the Blend template in the Brine family. 

Any CSS tips would be greatly appreciated! Thanks!!

Screen Shot 2019-12-01 at 11.45.01 AM.png

  • Replies 41
  • Views 12k
  • Created
  • Last Reply
Posted

@Shelly Can you insert a text link under "Our monthly e-Newsletter is an excellent way to stay connnected and to hear more about our industry insights."?

If yes, please create one, then let me know, i will use CSS to convert it 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!)

Posted

@tuanphanthanks for getting back to me so quickly. Ideally I'd like the button to link to a pop-up menu to subscribe. Is that possible, and if so should I start by creating that text link?

Posted
9 minutes ago, Shelly said:

@tuanphanthanks for getting back to me so quickly. Ideally I'd like the button to link to a pop-up menu to subscribe. Is that possible, and if so should I start by creating that text link?

To create a button, you need to insert a link, under text, then use code to change it to button

To create popup, you need to use some javascript/jquery. It will complicated. 

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!)

Posted

OK thank you. I think I will opt to just link the button to another page on the site to avoid the javascript. 

I've created the text link and it's live on the page now. Thanks again!

Posted
2 hours ago, Shelly said:

OK thank you. I think I will opt to just link the button to another page on the site to avoid the javascript. 

I've created the text link and it's live on the page now. Thanks again!

add to Home > Design > Custom CSS

section#newsletter .Index-gallery-item-content-body a {
    background: #f1f2;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
}

 

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!)

Posted
Just now, tuanphan said:

section#ingredients-gallery .Index-gallery-wrapper .Index-gallery-item p:last-child { background: red;

Thank you so much, this is great! Do you know how we would make the button white with black text and add some padding to the button? 

Posted
Just now, studiolinear said:

Thank you so much, this is great! Do you know how we would make the button white with black text and add some padding to the button? 

I think you should insert link first.... i can check & give exactly code.

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!)

Posted
9 minutes ago, studiolinear said:

Just added! 

section#ingredients-gallery .Index-gallery-wrapper .Index-gallery-item p:last-child {
    background: #fff;
    color: #000;
    display: block;
    max-width: 200px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
}

 

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!)

Posted
1 minute ago, tuanphan said:

section#ingredients-gallery .Index-gallery-wrapper .Index-gallery-item p:last-child { background: #fff; color: #000; display: block; max-width: 200px; text-align: center; padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; border-radius: 10px; }

Nailed it! Thank you SO much!!

Posted
15 hours ago, tuanphan said:

add to Home > Design > Custom CSS


section#newsletter .Index-gallery-item-content-body a {
    background: #f1f2;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
}

 

This didn't work for me. Right now I have that text linking to the RESOURCES page. I tried changing "#newsletter to #resources but no luck either. Any other ideas? Thanks in advance!

Posted
On 12/2/2019 at 1:44 PM, tuanphan said:

@Shelly Where did you insert? It worked here


section#newsletter .Index-gallery-item-content-body a {
    background: #f1f2;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
}

image.thumb.png.985718507ff8476eab2dad3f886d6594.png

Ahh @tuanphan it's working now, thank you!!!!!

 

Posted

@Tuanphan The button is working very well--thank you again! However this block of copy and button are getting cut off on mobile view. Any idea why that is happening?

 

Posted
1 hour ago, Shelly said:

@Tuanphan The button is working very well--thank you again! However this block of copy and button are getting cut off on mobile view. Any idea why that is happening?

 

I don't know the cause. But you can add this code to handle

@media screen and (max-width:640px) {
section#newsletter .Index-gallery-inner .Index-gallery-item:last-child {
    min-height: 35vh;
}
section#newsletter figure img {height: 100% !important;}
}

 

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!)

Posted
On 12/8/2019 at 4:08 PM, tuanphan said:

I don't know the cause. But you can add this code to handle


@media screen and (max-width:640px) {
section#newsletter .Index-gallery-inner .Index-gallery-item:last-child {
    min-height: 35vh;
}
section#newsletter figure img {height: 100% !important;}
}

 

This worked perfectly @tuanphan, thank you yet again!!!!

  • 4 months later...
Posted

Hello @tuanphan

I seem to be having issues trying to figure out which code to use. I'm currently using Mentor template. I'm trying to get a Gallery Section/Page to include buttons on the images as well. 

I've inputted two different codes you've provided above in the Settings -> Design -> Custom CSS but no luck. Which code to I need to use and where should I input it? 

website: https://experimentalbitchpresents.com/

Thank you so much! 

Screen Shot 2020-04-24 at 5.13.04 PM.png

Screen Shot 2020-04-24 at 5.14.27 PM.png

Posted
10 hours ago, alishabhaumik said:

Hello @tuanphan

I seem to be having issues trying to figure out which code to use. I'm currently using Mentor template. I'm trying to get a Gallery Section/Page to include buttons on the images as well. 

I've inputted two different codes you've provided above in the Settings -> Design -> Custom CSS but no luck. Which code to I need to use and where should I input it? 

website: https://experimentalbitchpresents.com/

Thank you so much! 

 

 

If you can add link, i can give code to turn 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!)

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

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