Centre Text and make the container full Width

Hello guys, have a question how can I centre my title to the text and make the container full width?

Hello @NikosBat ,

Please use this css in same file base.css

.slider-mobile-gutter .multicolumn-list__item:only-child {
    max-width: 100%;
    text-align: center;
}

Regards
Guleria

HI @NikosBat

To complete your requests, please follow these steps:

  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.
.multicolumn-card__info h3.inline-richtext {
    text-align: center !important;
}

Here is the result:

I hope this helps

Best,

Daisy

Hello Guleria and thank you that solved my Problem, how can I make this text bigger?

Please use this css

.slider-mobile-gutter .multicolumn-list__item h3.inline-richtext {
    font-size: 4rem !important;
}

and try to play little with numeric value (4) to adjust it a/to your need :grinning_face_with_smiling_eyes:

Regards
Guleria

Thank you very much I appreciate it