Archived topic
Global Style CSS
1 reply · Started by Ian on January 17, 2022
I cannot seem to find something in the Global styling section. I believe I followed a tutorial video from GP where it explained how to say, select a caption for all images on the site and give it some padding. It's not under Global Style. Can anyone point me to where I may find this.
Hi Ian,
If by "Global style" you meant global styling from the theme's customizer settings, the only global styling the customizer has would be the colors. https://generatepress.com/generatepress-3-1-global-colors-dynamic-typography/
To be honest, in a sense, everything in customizer settings can be considered "global" as the settings here are general application to all pages and posts.
select a caption for all images on the site and give it some padding.
For this one specifically, you'll need a custom CSS.
Example:
figure.wp-block-image figcaption {
padding: 20px;
}