#1863 closed defect (bug) (wontfix)
footer displaying wrong
Reported by: | darkfate | Owned by: | 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)
Change History (8)
#2
@
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
@
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.
fixed css file