Make WordPress Core

Opened 18 years ago

Closed 18 years ago

#3291 closed enhancement (fixed)

Horizontal rule tag is not displayed in posts

Reported by: kafkaesqui's profile Kafkaesqui Owned by:
Milestone: 2.1 Priority: normal
Severity: normal Version: 2.0
Component: Template Keywords: hr kubrick css
Focuses: 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 18 years ago.
Patches style.css to display hr tags in post content

Download all attachments as: .zip

Change History (2)

@Kafkaesqui
18 years ago

Patches style.css to display hr tags in post content

#1 @matt
18 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.