Jump to content

Text Over Image

Recommended Posts

  • Replies 5
  • Views 5k
  • Created
  • Last Reply
On 10/29/2020 at 6:22 AM, Lauri said:

@tuanphan... Your help would be greatly appreciated on this. 

You mean gallery under Freeship50 text?

If yes, you can edit gallery > edit images > add a text in Description box > It will appear under image > we will give the code to move it over image.

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
On 10/31/2020 at 3:18 AM, tuanphan said:

You mean gallery under Freeship50 text?

If yes, you can edit gallery > edit images > add a text in Description box > It will appear under image > we will give the code to move it over image.

Hi, I’ve edited the section and added text under the description box. Would appreciate the code to move it over image with the same font as on page. 

Link to comment
19 minutes ago, Lauri said:

Hi, I’ve edited the section and added text under the description box. Would appreciate the code to move it over image with the same font as on page. 

Add to Home > Design > Custom CSS

figure.gallery-masory-item {
    position: relative;
}
.gallery-caption {
    position: static;
}
/* title */
.gallery-caption-wrapper p {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 7%;
    transition: opacity ease 200ms !important;
    opacity: 0 !important;
pointer-events: none;
}
.gallery-masonry-item:hover .gallery-caption-wrapper p {
    opacity: 1 !important;
}
/* overlay */
.gallery-masonry-item-wrapper a:after {
    background: #f4f6ea; /* overlay color */
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity ease 200ms !important;
}
.gallery-masonry-item:hover .gallery-masonry-item-wrapper a:after {
    opacity: 0.75;
}
/* remove gap */
figcaption {
    padding: 0 !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!)

Link to comment

@Lauri I see your site has some other problems.

1. (Mobile) Facebook chat overlap Cookie notice, so you can't close cookie.

You can add this to Home > Design > Custom CSS to move Cookie position

@media screen and (max-width:767px) {
.sqs-cookie-banner-v2 {
    bottom: 50px !important;
}
}

image.thumb.png.46ec61a5acda6c0daf019e0a8bc1b738.png

2. You haven't changed SEO Tile for this page

https://www.statementmakerz.com/earrings

so you will see in Browser Tab Title "Store 2"

3. (Mobile) I think some product list page is too long, you can add a back to top button for users.

If you need this, I will give the code.

4. (Mobile) Product detail page. Breadcrumb is closer header, I think you should increase space between them.

5. (Mobile) Products show number (1/3..) over image, I think you can add Arrows slide, users can easily navigate to view more photos. 

Add to Home > Design > Custom CSS (for both problems 4 & 5)

@media screen and (max-width:767px) {
/* space between breadcrumb - header */
.ProductItem-nav-breadcrumb {
    margin-top: 30px;
}
/* Product slideshow arrows */
.ProductItem-gallery-carousel-controls {
    display: flex !important;
}
/* arrows background */
.ProductItem-gallery-carousel-controls * {
    background: white;
}
.ProductItem-gallery-carousel-controls>div {
    justify-content: center !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!)

Link to comment

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.