Hello Support Team,
can anyone give me a code of how to centre align the heading and subheading of featured collection
not This :
this:
Hello Support Team,
can anyone give me a code of how to centre align the heading and subheading of featured collection
not This :
this:
Hi @AryavK ,
Here is the CSS code you can use:
.section-header__title, .section-header__subtitle {
text-align: center;
}
Open your theme’s CSS file (often named theme.scss.liquid or similar) and paste the above CSS code at the end of the file. Remember, CSS class names like .section-header__title and .section-header__subtitle might vary based on your theme, so you may need to adjust them accordingly.