I have successfully integrated Popeye slider to display images. However, whenever I need to create a new slider show, I find myself duplicating all the CSS content to another ID. For example:
#ppy1 .ppy-extcaption {
width: 240px;
display: block;
}
#ppy4 .ppy-extcaption {
width: 240px;
display: block;
}
#ppy5 .ppy-extcaption {
width: 240px;
display: block;
}
Is there a way to create different IDs with the same properties without duplicating so much CSS code?
Thank you. Sorry for any mistakes in my English.