Home › Forums › Pro Support › Trying to customize a post style › Reply To: Trying to customize a post style
April 23, 2019 at 5:05 am
#8911
Participant
Hi there,
the Custom Class can be added to any list from the More Settings tab, named Section HTML Classes. You can then specify a class instead of the WPSP ID in your CSS. For example you have this CSS:
#wpsp-2687 .wp-show-posts-inner {
box-shadow: 0 4px 8px 0 rgba(38,153,251,.2);
border: 1px solid #dfdfdf;
}
Which is specific to list 2687. Using a custom class in any list would allow you to do this:
.my-custom-class .wp-show-posts-inner {
box-shadow: 0 4px 8px 0 rgba(38,153,251,.2);
border: 1px solid #dfdfdf;
}
So many lists can have the same class and the one CSS Rule will apply to all of them.