Hi guys I’m using the narrative theme–
https://basatelier.com/pages/custom
I am trying to make the accent line thinner just on this page (its already thin everywhere else)
And also would like to reduce the padding around the text section at the top of the page
All help is much appreciated! Thanks
Always backup/export themes and files before making changes to code
Basically find the current css for the other templates accents in the relative CSS file for the theme
@media only screen and (min-width: 750px)
.feature-row__heading::before {
height: 2px!important;
}
and try to consolidate the rules for all such accents by adding the CSS selectors for the custom pages with
’ .rich-text__heading::before ’
@media only screen and (min-width: 750px)
.feature-row__heading::before , .rich-text__heading::before {
height: 2px!important;
}
Goodluck.
Sorry this seems helpful but im unsure where to find the section
Can you let me know where I would find it?