I just went live with the Dawn theme. I’m seeing that the text from our articles from our blogs extend past the frame.
This is our site: https://suorix.myshopify.com/
Any advice would be appreciated!
I just went live with the Dawn theme. I’m seeing that the text from our articles from our blogs extend past the frame.
This is our site: https://suorix.myshopify.com/
Any advice would be appreciated!
Hi @TheOneFaze ,
You can follow the instruction below:
.blog__posts .article-card .card__information {
overflow-wrap: anywhere !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hello @AvadaCommerce ,
Thanks for the quick reply, unfortunately the problem is still there. I have attach the CSS code for the article card in a txt file below.
Thanks for the help.
Hi @TheOneFaze ,
I checked it and it is no longer error, I don’t know where it is, can you send me the exact link?
Hello @AvadaCommerce ,
You are on the correct page (Homepage), turns out this problem is only occurring when I am using my IPad. Must be something to do with the different aspect ratios.
Hi @TheOneFaze ,
You can replace previous code by below code:
.blog__posts .article-card .card__information {
overflow-wrap: anywhere !important;
max-width: 100% !important;
}
.article-card__excerpt {
max-width: 100%;
word-break: break-word !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.