Hey @xxplumcrazeexx,
Thanks so much for reaching out! If you want to adjust the font size for just the instructions/directions on a Create card you could utilize the following below:
.mv-create-instructions p, .mv-create-instructions li, .mv-create-instructions em, .mv-create-instructions span {
font-size: 20px !important;
}
If you wanted to adjust the font sizes across every Create card section and not just the directions/instructions you could use the following code below and that should work:
.mv-create-card p, .mv-create-card li, .mv-create-card em, .mv-create-card span {
font-size: 20px !important;
}
Just simply copy and paste one of those two above into the Additional CSS section in WordPress by going to Appearance -> Customize -> Additional CSS. If by chance you don’t have that section available, then likely you paste in custom CSS elsewhere depending on the theme.
Additionally, the font-size above is just a placeholder size. You can always swap that our with your preferred font-size instead. ??
Hope that helps!