#4449 closed defect (bug) (duplicate)
Kubrick ordered list problem for IE7
Reported by: | neoen | Owned by: | djr |
---|---|---|---|
Milestone: | Priority: | low | |
Severity: | normal | Version: | 2.2 |
Component: | Template | Keywords: | has-patch needs-feedback |
Focuses: | Cc: |
Description
Hello, in default Kubrick theme there is a problem with ordered list (<ul>
<li></li></ul>) in IE 7 which is not appearing... In another theme it works well, so I suppose that there is some problem in css.
Thank you for your help...
Attachments (4)
Change History (26)
#3
@
17 years ago
In Firefox there is ordered list, but in IE7 not (missing). I use default Kubrick (Default 1.6) theme without any changes. Please see attached .png file...
#4
@
17 years ago
- Milestone 2.4 (future) deleted
- Resolution set to invalid
- Status changed from new to closed
This is an IE bug, and comes from not supporting the :before
pseudo-class.
#5
@
17 years ago
So, this cannot be repaired somehow, for example in css? It is default Wordpress theme and it is very annoying...
#6
@
17 years ago
You might be able to do something like this:
* html .post ul { list-style-type: disc; }
#7
@
17 years ago
- Milestone set to 2.2.2
- Resolution invalid deleted
- Status changed from closed to reopened
I tried to add this code to style.css, but this does not work.
But I found there following:
/* Begin Lists
Special stylized non-IE bullets
Do not work in Internet Explorer, which merely default to normal bullets. */
So there are special bullets for non IE7 browsers, but in IE7 there shuld be normal bullets. But in IE7 there are no bullets :-(
Thank you for your help...
#10
@
17 years ago
- Cc djr added
- Owner changed from anonymous to djr
- Status changed from reopened to new
#11
@
17 years ago
Let's hope I did this correctly. I attached a patch which specifically targets IE7. I realise this adds a lot of extra css to default.css, but it's the only way to have bullets across all browsers. I think it's better to move to image based bullets or include a seperate stylesheet for IE7, but nevertheless my patch works.
Tested with no side-effects: IE7/Win, FF2/Win, FF2/Mac, Safari3/Mac. A temporary demo can be seen here: http://www.iphonemobiel.nl.
#13
@
16 years ago
Ok, I s*ck at making patches, so either ignore or please fix.
Here's the code block to be included:
/* Fix for IE7 not showing bullets */ html>body .entry ul { *margin-left: 0px; *padding: 0 0 0 30px; *list-style: disc; *padding-left: 10px; *text-indent: 10px; } html>body .entry ul li { *margin: 7px 0 8px 10px; } /* End fix for IE7 */
This code block need to go just below:
.entry ul li:before, #sidebar ul ul li:before { content: "\00BB \0020"; }
#14
@
16 years ago
- Milestone changed from 2.9 to 2.8
- Priority changed from normal to low
would be nice if this were to make it into 2.8, since I'm sure the posts look weird to visitors using IE... I wish IE were more compliant, but don't we all ;)
#15
@
16 years ago
Have a better patch that does the same but is still valid CSS. Tragetted for IE7.
#18
@
16 years ago
- Keywords changed from ie7 has-patch needs-feedback to has-patch needs-feedback ie7
#19
@
15 years ago
- Summary changed from Kubrick ordered list problem to Kubrick ordered list problem for IE7
Tested patch 4449-style.css.diff, 4449-vk.diff and 4449.diff.
None seem to work in IE7 as of now. Tried it out with the latest nightly build.
I`ll try working on a update to these patches.
Can you provide a description of what's wrong? Or someone else with IE 7?