Can you add a horizontal line in a page.liquid?

Hello,

I’m not sure if adding a horizontal line is even possible but wanted to see if anyone knew. If so can you change the width and color? Has anyone ever done this in a template page.liquid?

Thank you in advance!

You can do that by adding CSS code. Could you share your page URL and explain your request of the line?

Hello @Jeremy-Cav ,

Yes, you can add a horizontal line in the page.liquid file. You can use something like this:


  ## Section 1
  

This is the first section of content.

---

  ## Section 2
  

This is the second section of content.

And if you want to change the weight line or color, you can use this code:

hr {
  border-top: 2px solid #333;
  height: 1px;
  margin: 20px 0;
}

Let we know if you need any further questions.

Ali Reviews team.

1 Like