New Shopify Certification now available: Liquid Storefronts for Theme Developers

Height of text in custom liquid

Solved
Eline12
New Member
10 0 0

Hi everyone,

 

I've a question about a custom liquid I implemented in my store.

 

Unfortunately I haven't been able to center the text in the middle of the image I uploaded through the custom liquid. Let me show you what I mean by posting images:

 

Eline12_0-1699554571464.png

 

I'd like to have the text "4.5 / 5 sterren op Trustpilot" centering in the middle of the image. Like this (without the black line ofcourse, just a quick edit through paint):

 

Eline12_1-1699554932981.png

 

My website link = https://tlysocvwxwkl4jp7-76486705476.shopifypreview.com

 

Thank you in advance.

 

Kind regards,

Eline

Accepted Solution (1)
BSS-Commerce
Shopify Expert
2896 387 411

This is an accepted solution.

Hi @Eline12 

1. Go to Theme->Edit code, find file name "base.css" and add this code:

span.tp-text {
    position: absolute;
}

@media only screen and (max-width: 768px)
   span.tp-text {
      top: 3px;
   }

}

The result will be as the following image:

- PC:

view (66).png

- Mobile:

view (67).png

Hope it helps @Eline12 !

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

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

View solution in original post

Replies 4 (4)
Bilash
Shopify Partner
25 2 1

which page you added this?

Eline12
New Member
10 0 0

It's on this page.

BSS-Commerce
Shopify Expert
2896 387 411

This is an accepted solution.

Hi @Eline12 

1. Go to Theme->Edit code, find file name "base.css" and add this code:

span.tp-text {
    position: absolute;
}

@media only screen and (max-width: 768px)
   span.tp-text {
      top: 3px;
   }

}

The result will be as the following image:

- PC:

view (66).png

- Mobile:

view (67).png

Hope it helps @Eline12 !

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

For B2B solutions and custom pricing, check out B2B Solution & Custom Pricing |
For adding product labels/badges, visit Product Labels by BSS

BSS Commerce - Shopify Apps & Store Development Service Provider

Hire a Shopify expert | Shopify Plus Store Development

Eline12
New Member
10 0 0

Thanks a lot. That's a very good solution.

 

Have a nice day!