How do I center the title/date and excerpt text under featured blog post photo? (Be Yours Theme)

Solved

How do I center the title/date and excerpt text under featured blog post photo? (Be Yours Theme)

Back9ine
Excursionist
16 0 2

Hello, 

I am trying to do three things:

1. Center the title/date and excerpt text under the featured photo on my main blog page below.
https://backnineskincare.com/blogs/discover

2. Remove the featured photo from the top of the blog article itself, while keeping it on the main blog page and within the "Discover More" section below the article.

https://backnineskincare.com/blogs/discover/do-i-really-need-to-wear-sunscreen

 

and;

3. Be able to adjust the font size of the article title and date on the article page.

https://backnineskincare.com/blogs/discover/do-i-really-need-to-wear-sunscreen

T
hank you so much for any help or guidance!

Accepted Solution (1)

Sweet_Savior_3
Shopify Partner
1376 104 149

This is an accepted solution.

Hello @Back9ine 

 

Please paste the CSS in base.css file.

.article-card__info {
text-align: center;
}
.article-template .article-template__hero-container {
  display: none;
}
.article-template .article-template__title {
  font-size: 32px;
}
.article-template .article-template__title ~ * {
  font-size: 18px !important;
}

OUTPUT:

Sweet_Savior_3_0-1708194928954.png

Sweet_Savior_3_1-1708194940658.png

 

Thanks

Don't forget to like and accept the solution to help others store owners.
Looking for an expert or Have any queries ? Send query to the Inbox
Coffee Tip ? Pay to shopify.dev.34@gmail.com
From Less To Further !!!

View solution in original post

Replies 2 (2)

Sweet_Savior_3
Shopify Partner
1376 104 149

This is an accepted solution.

Hello @Back9ine 

 

Please paste the CSS in base.css file.

.article-card__info {
text-align: center;
}
.article-template .article-template__hero-container {
  display: none;
}
.article-template .article-template__title {
  font-size: 32px;
}
.article-template .article-template__title ~ * {
  font-size: 18px !important;
}

OUTPUT:

Sweet_Savior_3_0-1708194928954.png

Sweet_Savior_3_1-1708194940658.png

 

Thanks

Don't forget to like and accept the solution to help others store owners.
Looking for an expert or Have any queries ? Send query to the Inbox
Coffee Tip ? Pay to shopify.dev.34@gmail.com
From Less To Further !!!
Back9ine
Excursionist
16 0 2

Thanks so much!