Hi can you help place the text on my home page in the center of the photo for every desktop size (like 2nd image) ? As you can see when the screen becomes smaller the text goes very down. Thank you
Pass: biangu
Url: www.matibrnd.com
A user seeks help centering text over a homepage image across different desktop screen sizes. Currently, the text shifts downward as the screen becomes smaller, rather than remaining centered on the photo.
Proposed Solution:
A web designer suggests adding CSS code to the base.css file:
align-items: center to the image-with-text grid containermargin: 0 !important to specific content sectionsThe solution targets the theme’s image-with-text component to maintain vertical centering regardless of viewport width. The user provided store access credentials and reference images showing the current misalignment versus the desired centered layout.
Hi can you help place the text on my home page in the center of the photo for every desktop size (like 2nd image) ? As you can see when the screen becomes smaller the text goes very down. Thank you
Pass: biangu
Url: www.matibrnd.com
Add This css In your base.css File
.image-with-text__grid.grid.grid--gapless.grid--1-col.grid--2-col-tablet {
align-items: center;
}
#shopify-section-template--18448488431883__image_with_text_8mt88M .image-with-text__content.image-with-text__content--top{
margin:0 !important;
}