Dawn Theme: Multi-column fonts and Image with Text width

Solved

Dawn Theme: Multi-column fonts and Image with Text width

INTERSECTIONcp
Tourist
9 0 1

Hello everyone, let me ask some questions on the topics mentioned in title.

 

【Multi-column】

I want to make the font size smaller(only ones in left column if possible) and add empty line, like spaces, between paragraphs so it might be easier for readers to read. If it is possible, I may also want to change width of each columns.

 

スクリーンショット 2023-01-13 10.27.29.png

 

【Image with Text】

Please tell me how to change width of title and main text of Image with Text section. I want to make them a bit wider.

 

スクリーンショット 2023-01-13 10.32.42.png

 

https://intersection-coffee.myshopify.com/pages/about

Here is the page I am talking about, and pass to access is "skiffi"

 

Thanks for reading this, it is appreciated if anyone tells me how to solve these issues!

 

 

Accepted Solutions (2)

BSS-Commerce
Shopify Partner
3477 464 554

This is an accepted solution.

Hi @INTERSECTIONcp 

We checked and would like to suggest you a solution below:

- Please go to Online Store => Themes => Edit Code:

view - 2023-01-13T135257.177.png

- To reduce the font size in the left column and add blank lines between paragraphs, please search for section-multicolumn.css and add the following code at the end of the file section-multicolumn.css:

view - 2023-01-13T135344.266.png

 

 

.multicolumn-card__info .rte p{
  margin-bottom: 10px;
}

.multicolumn-list__item:first-child{
  font-size: 13px;
}

 

 

- If you find the empty line spacing between paragraphs unreasonable, please increase or decrease the margin-bottom as you want. Similarly if you find the font size inappropriate, you can adjust it.

- If you want to change the width of the Multi-column, you have to increase the page width. Notice this will increase the page width of your entire site.
- If you want to change, please go to Online store => Themes => Customize:

view - 2023-01-13T135607.646.png

- To increase the length of the title and main text of the Image with Text section, you search for the file component-image-with-text.css and add the following code at the end of the file component-image-with-text.css:

view - 2023-01-13T135702.185.png

 

 

.image-with-text__content{
  padding-left: 20px; /*increase and decrease to adjust the length on the left*/
  padding-right: 20px; /*increase and decrease to adjust the length on the right*/
}

.image-with-text__content .image-with-text__heading{
  width: 800px; /*increase or decrease to adjust the length of the title*/
}

 

 

I hope that it will work for you.

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


B2B Solution & Custom Pricing | Product Labels by BSS


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

BSS-Commerce
Shopify Partner
3477 464 554

This is an accepted solution.

Hi @INTERSECTIONcp 

- First, you can't add blank lines just by pressing enter in Customize Theme because Shopify will automatically create a <p> tag for each paragraph when you break the line. This will result that even if you add a lot of blank lines in the Customize Theme, it still won't show the blank lines as you want unless you add the CSS for each of its <p> tags.

- Second, if you want desktop mode only, put your CSS in this:

@media all and (min-width: 750px){
  /*The code you want to apply css to the desktop is here*/
}

I hope that it will work for you.

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


B2B Solution & Custom Pricing | Product Labels by BSS


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 5 (5)

BSS-Commerce
Shopify Partner
3477 464 554

This is an accepted solution.

Hi @INTERSECTIONcp 

We checked and would like to suggest you a solution below:

- Please go to Online Store => Themes => Edit Code:

view - 2023-01-13T135257.177.png

- To reduce the font size in the left column and add blank lines between paragraphs, please search for section-multicolumn.css and add the following code at the end of the file section-multicolumn.css:

view - 2023-01-13T135344.266.png

 

 

.multicolumn-card__info .rte p{
  margin-bottom: 10px;
}

.multicolumn-list__item:first-child{
  font-size: 13px;
}

 

 

- If you find the empty line spacing between paragraphs unreasonable, please increase or decrease the margin-bottom as you want. Similarly if you find the font size inappropriate, you can adjust it.

- If you want to change the width of the Multi-column, you have to increase the page width. Notice this will increase the page width of your entire site.
- If you want to change, please go to Online store => Themes => Customize:

view - 2023-01-13T135607.646.png

- To increase the length of the title and main text of the Image with Text section, you search for the file component-image-with-text.css and add the following code at the end of the file component-image-with-text.css:

view - 2023-01-13T135702.185.png

 

 

.image-with-text__content{
  padding-left: 20px; /*increase and decrease to adjust the length on the left*/
  padding-right: 20px; /*increase and decrease to adjust the length on the right*/
}

.image-with-text__content .image-with-text__heading{
  width: 800px; /*increase or decrease to adjust the length of the title*/
}

 

 

I hope that it will work for you.

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


B2B Solution & Custom Pricing | Product Labels by BSS


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


BSS Commerce - Full-service eCommerce Agency
INTERSECTIONcp
Tourist
9 0 1

Thanks for your help @BSS-Commerce !

Looks like it is what I wanted! But let me ask you 2 more things...

 

Is is possible to add blank lines just by pressing enter? The code you gave me works great, however I also want to know how to do it when I do not want to add lines after every paragraphs.

 

Second, could you please tell me how to apply these codes on desktop mode only? I checked the design on mobile mode and looks like it goes a bit wrong like the picture shown below...

 

スクリーンショット 2023-01-20 10.46.27.png

BSS-Commerce
Shopify Partner
3477 464 554

This is an accepted solution.

Hi @INTERSECTIONcp 

- First, you can't add blank lines just by pressing enter in Customize Theme because Shopify will automatically create a <p> tag for each paragraph when you break the line. This will result that even if you add a lot of blank lines in the Customize Theme, it still won't show the blank lines as you want unless you add the CSS for each of its <p> tags.

- Second, if you want desktop mode only, put your CSS in this:

@media all and (min-width: 750px){
  /*The code you want to apply css to the desktop is here*/
}

I hope that it will work for you.

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


B2B Solution & Custom Pricing | Product Labels by BSS


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


BSS Commerce - Full-service eCommerce Agency
INTERSECTIONcp
Tourist
9 0 1

@BSS-Commerce , thank you for answering my questions and the code you just mentioned worked nicely!

Ujjaval
Shopify Partner
1242 197 213

@INTERSECTIONcp 
Put below css into base.css file (Online store->Themes->Edit code->assets->base.css)

li#Slide-template--17333090418981__5193c82c-c18c-4f00-aa21-5d4e800589d7-2 {
    padding: 20px !important;
    margin: 0 auto;
    text-align: justify;
}
li#Slide-template--17333090418981__5193c82c-c18c-4f00-aa21-5d4e800589d7-1 {
    padding: 20px !important;
    margin: 0 auto;
    text-align: justify;
}

Ujjaval_0-1673600184222.png