In my project I have my own CSS rules for unordered lists, and I want to apply a style that applies to every <ul>
except for this plugin’s <ul id="rmp-stars">
. Because I have to select it by ID, the specificity is overriding other <ul>
in my site. It would be more conventional in my opinion to change it to <ul class="rmp-stars">
instead, unless you have good reason to keep it id?
For the record I customized the plugin so that there’s multiple instances of it in one page, so there’s actually multiple <ul id="rmp-stars">
.
-
This reply was modified 5 years, 2 months ago by mleecp.