oh, and having this in your stylesheet will "prevent" your "stage" area from showing up, at least on that page ... note that display: none means ... don't show.HTML Code:@media print { .categoryListBoxContents {display: none} }
oh, and having this in your stylesheet will "prevent" your "stage" area from showing up, at least on that page ... note that display: none means ... don't show.HTML Code:@media print { .categoryListBoxContents {display: none} }
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Can't add much to that Drbyte :-)
Some unrelated errors in the CSS are that it contains some faulty color settings:
In general it's better to track down and solve all/most CSS and HTML errors first, when having "weird" problems.Code:color: 0000CC;
OK, I added the </div> and took out the display none. Still , not printing?
Any other thoughts?
Thanks,
Slabadoo
1. get rid of this in your stylesheet.css2. In this section, add another closing </div>, as shown:Code:@media print { .categoryListBoxContents }That should get your "stage" area printing. You can deal with the other issues separately.Code:<!--bof-navigation display--> <div id="navMainWrapper"> <div id="navMain"> <ul class="back"> <li><a href="http://...../">Profile Catalog Home</a></li> <li><a href="http://....../index.php?main_page=login">Log In</a></li> </ul> <br class="clearBoth" /> </div> </div> <!--eof-navigation display-->
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
DrByte![]()
thank you. This solved my printing problem.
Slabadoo...