Adding icons underneath featured collection title on impulse theme

Hello! I am needing to add star icons below my title in the featured collection section of my homepage using the Impulse theme. (please see attached image for example.) I would greatly appreciate it if someone could point me in the right direction, I am comfortable with some mild coding. Thanks!

Hi @Tucker56 ,

Are you able to provide us your website?

Sure, it’s thepicklrshop.com

Hi @Tucker56 ,

Thank you for that. Please follow the instructions below.

  1. Go to Admin > Online store > Themes > Actions > Edit code
  2. Go to Asset folder, and open the theme.css file
  3. Add the code below.
#CollectionSection-template--16015170273526__featured-collection > div:nth-child(1) > div > h2::after {
    content: "★★★★★";
    display: block;
    color: #05ACEC;
    margin-top: 10px;
    transform: scale(.9);
}