Replacing divider line with 3 centered stars (* * *)

Hi,

I’m not a web dev, or conversant with CSS, aside a little dabbling.

Is there a simple way to replace the divider line on the Alpine theme with 3 stars centered separated by a space in between them?

From (left justified):
Screenshot 2024-09-28 at 10.08.42

To:
Screenshot 2024-09-28 at 10.07.42

Thanks for any pointers.

hr {
    border: none;
}

hr::before {
    content: '***';
    display: block;
    text-align: center;
}

Thank you, but I’m not sure where I should put this.

In static/assets/css/style.css ?

I tried it there, and it worked.

Thank you :pray:

Now to tweak it.