Hello,
so I have the showcase theme and I wanted to make the headers of certain areas have center alignment. Currently, it has the left alignment I have tried to go into the code to and change to center but had no results.
password: tawny
Hello,
so I have the showcase theme and I wanted to make the headers of certain areas have center alignment. Currently, it has the left alignment I have tried to go into the code to and change to center but had no results.
password: tawny
@Lovestruck you can add this at the end of your CSS file (Themes → Edit code → Assets → styles.css):
.section-heading {
justify-content: center;
}
This will change the alignment of all section headings.
OMG Thank you!!!