Re: Make rectangle away from title

Solved

Make rectangle away from title

MiguelMaya
Excursionist
48 0 4

We’ve added cool glow effects for the title, however there’s this weird rectangle appearing between the text. Are you able to help me make it go away? I’ll provide the code currently used for the effect on the mobile version.

 

Using Dawn 15 misteri.ca

 

IMG_0598.jpeg

Accepted Solution (1)
BSSCommerce-TC
Shopify Partner
225 49 51

This is an accepted solution.

Hi @MiguelMaya ,

That’s difficult. You can hide it behind some text.

Try it and double check on your website

@media only screen and (max-width: 749px) {
    .banner__heading::after {
        content: '';
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        width: 60%;
        height: 10px;
        background-color: rgba(255, 255, 255, 0.34);
        box-shadow: 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1);
        transition: 0.4s ease;
        top: 12px;
    }
}

If our suggestions are useful, please let us know by giving it a like, marking it as a solution.


MIDA: Heatmap, Record & Replay |BLOOP Referral Program, Reward |

Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

View solution in original post

Replies 2 (2)

MiguelMaya
Excursionist
48 0 4
@media only screen and (max-width: 749px) {
  .banner__heading::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 62%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1);
    transition: 0.4s ease;
  }
  .banner__buttons .button--secondary {
    box-shadow: 0 0 8px 4px rgba(255, 255, 255, 0.46);
  }
BSSCommerce-TC
Shopify Partner
225 49 51

This is an accepted solution.

Hi @MiguelMaya ,

That’s difficult. You can hide it behind some text.

Try it and double check on your website

@media only screen and (max-width: 749px) {
    .banner__heading::after {
        content: '';
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translate(-50%, 50%);
        width: 60%;
        height: 10px;
        background-color: rgba(255, 255, 255, 0.34);
        box-shadow: 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1), 0 10px 60px rgba(255, 255, 255, 1);
        transition: 0.4s ease;
        top: 12px;
    }
}

If our suggestions are useful, please let us know by giving it a like, marking it as a solution.


MIDA: Heatmap, Record & Replay |BLOOP Referral Program, Reward |

Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency