Opened 7 years ago

Closed 6 years ago

#3291 closed enhancement (fixed)

Horizontal rule tag is not displayed in posts

Reported by: Kafkaesqui Owned by: anonymous
Priority: normal Milestone: 2.1
Component: Template Version: 2.0
Severity: normal Keywords: hr kubrick css
Cc:

Description

The horizontal rule (hr) tag when used in a post is not displayed by the default theme because of the following declaration in its stylesheet:

hr {
	display: none;
	}

I'm submitting a patch to the default theme's style.css which adds the following declaration (to display hr tags within the post class):

.post hr {
	display: block;
	}

Attachments (1)

style.css.patch (336 bytes) - added by Kafkaesqui 7 years ago.
Patches style.css to display hr tags in post content

Download all attachments as: .zip

Change History (2)

Patches style.css to display hr tags in post content

comment:1   matt6 years ago

  • Resolution set to fixed
  • Status changed from new to closed

(In [4567]) Show HRs in posts, fixes #3291

Note: See TracTickets for help on using tickets.