Jump to content

Hovering Captions in the *Middle* of Images // Ahmir Miller Template

Recommended Posts

Hi, I haven't seen anything yet to help for this and would appreciate any help for my portfolio site. 

On my template (the Ahmir Miller), I am trying to get a text overlay on each Home Page photo as you hover, BUT the only "overlay" option offered is at the bottom and there is no way to edit the placement, size, font, etc. Is there anyway to do an overlay similar to the York template (photo attached below)? I really don't want to have to change my entire site template just to get this, but I need titles on my projects so people can understand what each image will click into (page-wise). I really appreciate any help!

Current Text Overlay option:

image.thumb.png.c53c7a67165036a7cd445b364c155751.png

York Template's Text Overlay:

image.thumb.png.8d0b08d38c68cb5a6c5669863067bcf0.png

Link to comment
10 hours ago, Kayma said:

Hi, I haven't seen anything yet to help for this and would appreciate any help for my portfolio site. 

On my template (the Ahmir Miller), I am trying to get a text overlay on each Home Page photo as you hover, BUT the only "overlay" option offered is at the bottom and there is no way to edit the placement, size, font, etc. Is there anyway to do an overlay similar to the York template (photo attached below)? I really don't want to have to change my entire site template just to get this, but I need titles on my projects so people can understand what each image will click into (page-wise). I really appreciate any help!

Current Text Overlay option:

image.thumb.png.c53c7a67165036a7cd445b364c155751.png

York Template's Text Overlay:

image.thumb.png.8d0b08d38c68cb5a6c5669863067bcf0.png

 Can you share your website URL?

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
1 hour ago, Kayma said:

@Web_SolutionsMy website URL is https://www.wolfinbargerdesign.com. Once you click "Let's Work" on the front cover page, it will take you to my home page, where my project photos are all laid out, which is where I would like the captions to overlay the project photos (this is all below my intro video).

I can see there is no title with that image. Can you add title? 

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment

@Web_Solutions My apologies, it's looking like on my home page the images are actually in a grid, and I can't seem to find a way to add titles at all via grid. But, if you click on the last image (bottom row, the very right - in the photo below) - you can see images that are not in a grid, just images alone that I have added titles to.

Through either one (image alone, or gridded images), if you have any help on adding titles in the center of each image, anything would be helpful. Thank you!

www.wolfinbargerdesign.com

Screenshot 2023-10-17 at 2.51.31 PM.png

Screenshot 2023-10-17 at 2.52.00 PM.png

Link to comment
31 minutes ago, Kayma said:

@Web_Solutions My apologies, it's looking like on my home page the images are actually in a grid, and I can't seem to find a way to add titles at all via grid. But, if you click on the last image (bottom row, the very right - in the photo below) - you can see images that are not in a grid, just images alone that I have added titles to.

Through either one (image alone, or gridded images), if you have any help on adding titles in the center of each image, anything would be helpful. Thank you!

www.wolfinbargerdesign.com

Screenshot 2023-10-17 at 2.51.31 PM.png

Screenshot 2023-10-17 at 2.52.00 PM.png

 

Add these code on Custom CSS panel in Website Utilities Website Tools > Custom CSS.

.sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption-wrapper {
  top: 0 !important;
  height: 100% !important;
  max-height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

 

https://www.loom.com/share/2d1e7a961e4f426bb8d9990e25638c5d?sid=5c95d317-4059-4aec-b405-70da5f414481

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
1 hour ago, Kayma said:

@Web_Solutions You are an angel!!! Thank you! Last thing, is there anyway to make the hovering text bigger or bolded? Or change the font? just for future reference. Let me know! Thank you again. 

 

Yes, Here is the code. add this code below the previous code. You increase or decrease the font site 20px to 25px or 18px or as you want?

.sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption p {
  font-size: 20px !important;
  font-weight: bold;
  text-align: center;
}

 

Screenshot_274.png

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment

@Web_Solutions Hi, thank you so much, this worked! Now, sadly I am having another issue though. Now that there are these hovering captions, whenever I click on the image (when it should be linked to go to another page), it will not take me there. It just lets you hover, but when I click on the linked image it won't take me to that page anymore. Do you have any idea how to fix or why this is?

Link to comment
7 hours ago, Kayma said:

@Web_Solutions Hi, thank you so much, this worked! Now, sadly I am having another issue though. Now that there are these hovering captions, whenever I click on the image (when it should be linked to go to another page), it will not take me there. It just lets you hover, but when I click on the linked image it won't take me to that page anymore. Do you have any idea how to fix or why this is?

Yes. Add the code at the Custom CSS panel very bottom. 

.sqs-block-image .sqs-block-image-link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999;
}

 

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
7 hours ago, Kayma said:

@Web_Solutions I do apologize, here is my very last question – is there a way to change the font of the hovering text? Please let me know. I greatly appreciate you!

Yes, Replace the previous code(see the image) with the code below.

.sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption p {
  font-size: 20px !important;
  font-weight: bold;
  text-align: center;
  font-family: baskerville-poster-pt !important;
}

 

Screenshot_310.png

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
  • 2 weeks later...

@Web_Solutions Hi there, thank you so much! Is there anyway to create a second line on the hovering text, to be a smaller size? See photos attached, my current page is what I currently have, versus the photo of what I would like my text sizing/layout to be similar to.

I am looking for the top text to be the title (in bold/all caps), and the text below to be the description (as a smaller font/lowercase). Please let me know if this is possible! Thank you again for all your help! 

Screenshot 2023-11-07 at 1.22.45 PM.png

Screenshot 2023-11-07 at 1.22.56 PM.png

Link to comment
On 11/8/2023 at 1:24 AM, Kayma said:

Hi there, thank you so much! Is there anyway to create a second line on the hovering text, to be a smaller size? See photos attached, my current page is what I currently have, versus the photo of what I would like my text sizing/layout to be similar to.

I am looking for the top text to be the title (in bold/all caps), and the text below to be the description (as a smaller font/lowercase). Please let me know if this is possible! Thank you again for all your help! 

Screenshot 2023-11-07 at 1.22.45 PM.png

 

The site is private, if you change it to password protected or publish, we can check easier

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
52 minutes ago, Kayma said:

@tuanphan @Web_Solutions Hi, my apologies! The site is available now. Please let me know! Thank you.

You already did it. What you want here?

Screenshot_389.png

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment

@Web_Solutions The text size in the second line is actually the same size as the text above, it is just lowercase. I'm wanting to make the second line of text a few sizes smaller if possible? But keep the first line of text at it's same size.

And as for the spacing in between the texts, I cannot shorten the leading (space in between the 2 lines).  Whenever I click  "enter" it automatically goes that far beneath the first line of text.

Link to comment
47 minutes ago, Kayma said:

@Web_Solutions The text size in the second line is actually the same size as the text above, it is just lowercase. I'm wanting to make the second line of text a few sizes smaller if possible? But keep the first line of text at it's same size.

And as for the spacing in between the texts, I cannot shorten the leading (space in between the 2 lines).  Whenever I click  "enter" it automatically goes that far beneath the first line of text.

Here is the code

.sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption p{
  margin: 0px !important;
}
.sqs-block-image .image-block-outer-wrapper.layout-caption-overlay-hover .image-caption p:nth-child(1n+2){
  font-size: 15px !important;
}

 

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

Link to comment
  • 3 weeks later...
4 hours ago, Kayma said:

@AlexSanhi!!  it's published now! Let me know if that works! Thank you so much!

 

Add these code on Custom CSS panel in Website Utilities Website Tools > Custom CSS.

#new-page-56 .image-block {
    padding-bottom: 17px !important
}

 

If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks

MD Rofik
Website Designer and Digital Marketer

Am I helpful? Want to offer me a coffee?
Send me a message if needed any help. I'll try to reply as soon as possible.


 

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.