Link to home
Start Free TrialLog in
Avatar of lisangle
lisangle

asked on

Bullets not printing

On my web page i have some unordered lists, and the bullets of which don't seem to print when using the IE6 browser.  Its ok in IE5 as well as both Netscape 6.2 and 4.7.

Can't understand what the problem may be?

Web page example -  http://www.tiresias.org/guidelines/fonts.htm

Perhaps it has somethig to do with my style sheet?
http://www.tiresias.org/tiresias-styles.css

Cheers,

Lis.
Avatar of jpoesen
jpoesen

To start with, when using an external style sheet, you don't need the <style> tags.

Secondly, you define UL twice in that stylesheet. Once the text-align is justified, the second time it is "left".

Slap them together and see if the problem still occurs.

jpoesen
Can you explain what the problem is? I checked your site on both IE5.5 and IE6and the bullets show up just fine.

jpoesen
Ok, I see it's a printing problem - got to read more carefully next time.

I tried using Arial as default font for both LI and UL, but that doesn't change it.

I'll see what I can come up with next...
Ok, when you do not use the stylesheet, the bullets get printed out.

I don't have time to dig through the file, but the solution obviously lies in there somewhere.

Good luck.
jpoesen
Avatar of lisangle

ASKER

Okay, so its in the style sheet, and I have narrowed it down to being within the

@media print {
ul {width: 78%; text-align: justify;}
}

for some reason with
ul {text-align: justify;} - bullets work but print off the page
with
ul {width: 78%;} - no bullets but prints within the margins.

I don't get it, does anyone?

ASKER CERTIFIED SOLUTION
Avatar of rj2
rj2

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Magic!
It so does the trick.