New Shopify Certification now available: Liquid Storefronts for Theme Developers

Multicomumn Adjustments

Solved
Kulike96
Tourist
8 0 4

Hi all,

 

I cant seem to be able to locate these in the settings, so perhaps it required code editing. I'm trying to do some adjustemts to the multicolumn in my homepage:

 

Screenshot 2023-09-29 215157.png

I wanted the text to be justified  and the images reduced by about 70%. is this possibe?
Thank you so much!

My site: https://977451-3.myshopify.com/

Password: poyuye



Accepted Solution (1)
miguel-angel
Shopify Partner
28 3 3

This is an accepted solution.

Hi @Kulike96 !
It's great to see you around here!

Go to this part of the section settings (this will allow us to apply custom styles only to that section in particular without breaking your entire website if we change code that affects other sections )

miguelangel_0-1696021284475.png


In there, add the following code:

.multicolumn-card__info p {
  text-align: justify;
}

.multicolumn-card__image-wrapper {
  width: 30%;
  margin-inline: auto;  /* Use this line if you want to center the images after being shrunken  */
}

 
Cheers !

Like & set Accepted Solution if I helped | Donate

.

Miguel Ángel

.

Freelance Shopify Developer
Reach out if you need any Custom Features in your site.

View solution in original post

Replies 3 (3)
miguel-angel
Shopify Partner
28 3 3

This is an accepted solution.

Hi @Kulike96 !
It's great to see you around here!

Go to this part of the section settings (this will allow us to apply custom styles only to that section in particular without breaking your entire website if we change code that affects other sections )

miguelangel_0-1696021284475.png


In there, add the following code:

.multicolumn-card__info p {
  text-align: justify;
}

.multicolumn-card__image-wrapper {
  width: 30%;
  margin-inline: auto;  /* Use this line if you want to center the images after being shrunken  */
}

 
Cheers !

Like & set Accepted Solution if I helped | Donate

.

Miguel Ángel

.

Freelance Shopify Developer
Reach out if you need any Custom Features in your site.
Kulike96
Tourist
8 0 4

You are a STAR! Thnak you!

miguel-angel
Shopify Partner
28 3 3

I'm glad I could help,
Have a nice day!

Like & set Accepted Solution if I helped | Donate

.

Miguel Ángel

.

Freelance Shopify Developer
Reach out if you need any Custom Features in your site.