That thin blue bar separating posts

mrGTB

Well-known member
You know that thin blue bar that separates posts from each other (picture below). How can I copy that to use on PAGES to separate entries I make. I looked at the source code and cannot see nothing to indicate what's used for it?

Snap2.webp
 
that's from the .messageList .message css class

Code:
.messageList .message {


    border-top: 1px solid #D7EDFC;
    padding-bottom: 30px;
    padding-top: 10px;
}
 
I'm not after changing it, I wanted to use the same bar on custom Pages added as a divider and thought it was <hr /> used. But if I used that I just get a thick dark bar (not the same as that bar). So just wondered if it could be pulled onto pages using code TAG like <hr />
 
You really should consider creating a custom style sheet for your pages, as Kier suggested.

Or just add some classes to EXTRA.css.
 
Top Bottom