Hello,
When adding multiple CSS rules, the best practice is to separate each rule with a line break. For example:
/* First rule */
.wd-dropdown-menu.wd-design-aside.wd-style-with-bg .wd-sub-menu-wrapp>.wd-sub-menu {
background-color: gray !important;
}
/* Second rule */
.some-other-selector {
color: #ffffff;
font-weight: bold;
}
Use line breaks between each block for readability. Optionally, add a comment above each block to describe what it does (like /* First rule */) — this helps when you have many rules in the future.
This way, your CSS stays organized, easy to read, and easy to edit later.
Best Regards,