Make WordPress Core

Opened 19 years ago

Closed 19 years ago

Last modified 7 years ago

#1863 closed defect (bug) (wontfix)

footer displaying wrong

Reported by: darkfate's profile darkfate Owned by: markjaquith's profile markjaquith
Milestone: Priority: normal
Severity: minor Version: 1.6
Component: Template Keywords:
Focuses: Cc:

Description

the footer image is a little off. I figured it out pretty quickly though. In the style.css it displays:

#footer {
	padding: 0 0 0 1px;
	margin: 0 auto;
	width: 760px;
	clear: both;
	}

When it should say:

#footer {
	padding: 0 0 0 0px;
	margin: 0 auto;
	width: 760px;
	clear: both;
	}

Attachments (1)

style.css (9.2 KB) - added by darkfate 19 years ago.
fixed css file

Download all attachments as: .zip

Change History (8)

@darkfate
19 years ago

fixed css file

#1 @darkfate
19 years ago

  • Severity changed from normal to minor

not that serious

#2 @markjaquith
19 years ago

  • Owner changed from anonymous to markjaquith
  • Status changed from new to assigned

padding: 0 0 0 0px; is best written as padding: 0;

0px is redundant. It's a length unit, so 0 = 0px = 0em = 0in = 0miles = 0lightyears; :-) Also, don't need to specify 0 for each one, a 0 overall means no border.

What browser are you using? (including version and OS). Does this problem show up in multiple browsers?

#3 @darkfate
19 years ago

ok well there should be an ifie css fix in the header. because it works in firefox and opera browsers except ie. in ie it has to have the 1px padding, but not anywhere else. i really dont like ie but that seems the only solution.

#4 @darkfate
19 years ago

o and im using firefox1.5rc2 and im on winxp

#5 @matt
19 years ago

  • Resolution set to wontfix
  • Status changed from assigned to closed

#6 @(none)
18 years ago

  • Milestone 2.0 deleted

Milestone 2.0 deleted

This ticket was mentioned in Slack in #core-editor by afercia. View the logs.


7 years ago

Note: See TracTickets for help on using tickets.