How do I change the blog featured image size in Kalles Theme 4.2

Solved

How do I change the blog featured image size in Kalles Theme 4.2

RegenTech
New Member
11 0 2

Hey there! I'm trying to adjust the featured image size on my website's blog pages but can't seem to find where to do that in the code. I'm using the Kalles theme. The featured image is too large and viewer can barely see the content, so I want it smaller.

Accepted Solution (1)
namphan
Shopify Partner
2572 335 380

This is an accepted solution.

Hi @RegenTech,

Please go to Customize > Theme settings > Custom CSS > Add code:

@media (min-width: 1025px) {
.t4s-article-image.t4s-pr {
    max-width: 40% !important;
}
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com

View solution in original post

Replies 13 (13)

CafeDelMar
Shopify Partner
163 36 45

Hi @RegenTechWelcome to the Shopify Community!

 

Please, share the store URL (and the password, if applicable). Would be much easier to debug and solve.

 

 

 

➡➡   Easy Embed Code   ⬅⬅ add CSS/JS/Liquid codes to any page of your store



Speed Booster App - Improve your store speed in 3 clicks
- Was your question answered? Mark it as an Accepted Solution
RegenTech
New Member
11 0 2

Oh, thanks, this is my link: https://www.regentech-fashion.com/blogs/inspire-me/lyocell-fabric-guide-2025
But how do I share my password with ya, by DMing?

namphan
Shopify Partner
2572 335 380

Hi @RegenTech,

Please send the website link, I will check it for you

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
RegenTech
New Member
11 0 2
namphan
Shopify Partner
2572 335 380

This is an accepted solution.

Hi @RegenTech,

Please go to Customize > Theme settings > Custom CSS > Add code:

@media (min-width: 1025px) {
.t4s-article-image.t4s-pr {
    max-width: 40% !important;
}
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
RegenTech
New Member
11 0 2

OMG, it works! Thank you so much for your help, but what if I want to adjust all the images of the artice the same height limit.

 

namphan
Shopify Partner
2572 335 380

Hi @RegenTech,

Please change code:

@media (min-width: 1025px) {
.t4s-article-image.t4s-pr,
.t4s-article-content.t4s-rte img {
    max-width: 40% !important;
}
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
RegenTech
New Member
11 0 2

It’s helpful, thank you so much for your help. Also, I'd like to set the fixed height of top page heading size to 606px, can you help me with that?

 

namphan
Shopify Partner
2572 335 380

Hi @RegenTech,

Please add code:

@media (min-width: 1025px) {
.template-article .header-banner .page-head {
    height: 606px;
    display: flex;
    align-items: center;
}
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
RegenTech
New Member
11 0 2

Thank you so much, now i'm using different blog post template, and I want to limit the image slider (parent) height to 606px, only for the blog post, not for the other page. still the same url: https://www.regentech-fashion.com/blogs/inspire-me/lyocell-fabric-guide-2025

namphan
Shopify Partner
2572 335 380

Hi @RegenTech,

Please add code:

@media (min-width: 1025px) {
.template-article .t4s-sec-slideshow .t4s-slideshow-inner:before {
    padding: 0;
    height: 606px;
}
}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
RegenTech
New Member
11 0 2

It's super helpful. Thank you so much!

namphan
Shopify Partner
2572 335 380

Hi @RegenTech,

You're welcome and happy to guide you 😊

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com