Merge lp:~quam-plures-core/quam-plures/print_css_done into lp:quam-plures

Proposed by EdB
Status: Merged
Approved by: Tilman Blumenbach
Approved revision: 7452
Merged at revision: not available
Proposed branch: lp:~quam-plures-core/quam-plures/print_css_done
Merge into: lp:quam-plures
Diff against target: 835 lines (+387/-155)
18 files modified
templates/asevo/index.main.php (+1/-1)
templates/asevo/print.css (+2/-2)
templates/asevo/style.css (+1/-1)
templates/basic/print.css (+2/-2)
templates/basic/style.css (+70/-45)
templates/basic/style_colors.css (+134/-0)
templates/basic/style_outlines.css (+134/-0)
templates/custom/print.css (+1/-1)
templates/evocamp/print.css (+1/-1)
templates/evopress/print.css (+1/-1)
templates/glossyblue/print.css (+19/-82)
templates/natural_pink/print.css (+1/-1)
templates/nifty_corners/_item_block.inc.php (+6/-4)
templates/nifty_corners/index.main.php (+10/-10)
templates/nifty_corners/print.css (+1/-1)
templates/pixelgreen/print.css (+1/-1)
templates/terrafirma/print.css (+1/-1)
templates/vastitude/print.css (+1/-1)
To merge this branch: bzr merge lp:~quam-plures-core/quam-plures/print_css_done
Reviewer Review Type Date Requested Status
Quam Plures Core Team Pending
Review via email: mp+21863@code.launchpad.net

Description of the change

All templates now have a 'print.css' file that hides from the printer anything above the posting area, the sidebar, and the textarea for comments. And subtle hints of color are back in 'basic' :)

To post a comment you must log in.
7451. By EdB

merged bug-544277 in

7452. By EdB

implementing bug-548867 solution

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'templates/asevo/index.main.php'
2--- templates/asevo/index.main.php 2010-02-17 04:47:47 +0000
3+++ templates/asevo/index.main.php 2010-03-26 17:29:27 +0000
4@@ -155,7 +155,7 @@
5 ?>
6 </div>
7
8-<div class="evo_sidebar">
9+<div class="sidebar">
10 <?php
11 // --- --- --- --- --- --- --- --- --- --- ---
12 // display "Sidebar" container's contents
13
14=== modified file 'templates/asevo/print.css'
15--- templates/asevo/print.css 2010-03-06 16:19:45 +0000
16+++ templates/asevo/print.css 2010-03-26 17:29:27 +0000
17@@ -13,7 +13,7 @@
18 }
19
20 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
21-/* all we really do for printing is hide the stuff we don't want to print */
22-#stuff, .more_stuff, form.bComment {
23+/* all we do is hide the stuff we don't want to print */
24+.head_zone, .nav_zone, .sidebar, form.bComment {
25 display: none;
26 }
27
28=== modified file 'templates/asevo/style.css'
29--- templates/asevo/style.css 2010-03-12 16:43:42 +0000
30+++ templates/asevo/style.css 2010-03-26 17:29:27 +0000
31@@ -47,7 +47,7 @@
32 overflow: hidden;
33 }
34
35-.evo_sidebar /* Right column */
36+.sidebar /* Right column */
37 {
38 width: 23ex;
39 float: right;
40
41=== modified file 'templates/basic/print.css'
42--- templates/basic/print.css 2010-03-06 16:19:45 +0000
43+++ templates/basic/print.css 2010-03-26 17:29:27 +0000
44@@ -13,7 +13,7 @@
45 }
46
47 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
48-/* all we really do for printing is hide the stuff we don't want to print */
49-#stuff, .more_stuff, form.bComment {
50+/* all we do is hide the stuff we don't want to print */
51+#PageTop, #Header, #Menu, #Sidebar, form.bComment {
52 display: none;
53 }
54
55=== modified file 'templates/basic/style.css'
56--- templates/basic/style.css 2010-01-29 18:58:22 +0000
57+++ templates/basic/style.css 2010-03-26 17:29:27 +0000
58@@ -3,39 +3,46 @@
59 @import url("css/navbar_superfish.css");
60
61 body {
62+background-color: white;
63 margin: 0;
64+border: none;
65 padding: 0;
66 }
67+
68 .template_wrapper_loggedin, .template_wrapper_anonymous {
69-margin: 1px;
70-border: 1px solid black;
71-padding: 1px;
72+background-color: black;
73+margin: 2px;
74+border: 2px solid black;
75+padding: 2px;
76 }
77
78 #PageTop {
79-margin: 1px;
80-border: 1px solid black;
81-padding: 1px;
82+background-color: gray;
83+margin: 2px;
84+border: 2px solid black;
85+padding: 2px;
86 }
87 #Header {
88-margin: 1px;
89-border: 1px solid black;
90-padding: 1px;
91+background-color: silver;
92+margin: 2px;
93+border: 2px solid black;
94+padding: 2px;
95 }
96 #Menu {
97-margin: 1px;
98-border: 1px solid black;
99-padding: 1px;
100+background-color: yellow;
101+margin: 2px;
102+border: 2px solid black;
103+padding: 2px;
104 }
105
106 #PageTop ul, #Menu ul {
107-margin: 1px;
108-padding: 1px;
109+margin: 2px;
110+padding: 2px;
111 list-style-type:none;
112 }
113 #PageTop ul li, #Menu ul li {
114-margin: 1px;
115-padding: 1px;
116+margin: 2px;
117+padding: 2px;
118 display: inline;
119 }
120
121@@ -43,87 +50,105 @@
122 width: 64%;
123 float: left;
124 clear: both;
125-margin: 1px;
126-border: 1px solid black;
127-padding: 1px;
128+background-color: purple;
129+margin: 2px;
130+border: 2px solid black;
131+padding: 2px;
132 }
133 #main_content h3 {
134-margin: 1px;
135-border: 1px solid red;
136-padding: 1px;
137+background-color: lime;
138+margin: 2px;
139+border: 2px solid red;
140+padding: 2px;
141+}
142+.item_content, .item_metadata {
143+background-color: fuchsia;
144+margin: 2px;
145+border: 2px solid maroon;
146+padding: 2px;
147 }
148
149 #Sidebar {
150 width: 32%;
151 float: right;
152-margin: 1px;
153-border: 1px solid black;
154-padding: 1px;
155+background-color: maroon;
156+margin: 2px;
157+border: 2px solid black;
158+padding: 2px;
159 }
160 #Sidebar div {
161-margin: 1px;
162-border: 1px solid black;
163-padding: 1px;
164+background-color: green;
165+margin: 2px;
166+border: 2px solid black;
167+padding: 2px;
168 }
169 #Sidebar div h3 {
170-margin: 1px;
171-border: 1px solid black;
172-padding: 1px;
173+background-color: olive;
174+margin: 2px;
175+border: 2px solid black;
176+padding: 2px;
177 }
178
179 #Footer {
180 clear: both;
181-margin: 1px;
182-border: 1px solid black;
183-padding: 1px;
184+background-color: red;
185+margin: 2px;
186+border: 2px solid black;
187+padding: 2px;
188 }
189
190 .messages, .item_prevnext_links {
191+background-color: teal;
192 margin: 2px;
193 border: 2px dotted black;
194 padding: 2px;
195 }
196 .item_prevnext_links {
197+background-color: blue;
198+margin: 2px;
199 border: 2px dotted blue;
200+padding: 2px;
201 }
202 .published {
203-margin: 1px;
204-border: 1px solid black;
205-padding: 1px;
206-}
207-.item_content, .item_metadata {
208-margin: 1px;
209-border: 1px solid maroon;
210-padding: 1px;
211+background-color: white;
212+margin: 2px;
213+border: 2px solid black;
214+padding: 2px;
215 }
216 .image_block {
217-margin: 1px;
218-border: 1px solid purple;
219-padding: 1px;
220+background-color: black;
221+margin: 2px;
222+border: 2px solid purple;
223+padding: 2px;
224 }
225
226 .comment_start {
227+background-color: navy;
228 margin: 2px;
229 border: 2px dashed black;
230 padding: 2px;
231 }
232 .preview_start {
233+background-color: teal;
234 margin: 2px;
235 border: 2px dashed black;
236 padding: 2px;
237 }
238 .trackback_url {
239+background-color: blue;
240 margin: 2px;
241 border: 2px dashed black;
242 padding: 2px;
243 }
244 .moderation_msg {
245+background-color: white;
246 margin: 2px;
247 border: 2px dashed black;
248 padding: 2px;
249 }
250
251 .feedback_feed_msg {
252+background-color: black;
253 margin: 2px;
254 border: 2px solid black;
255 padding: 2px;
256
257=== added file 'templates/basic/style_colors.css'
258--- templates/basic/style_colors.css 1970-01-01 00:00:00 +0000
259+++ templates/basic/style_colors.css 2010-03-26 17:29:27 +0000
260@@ -0,0 +1,134 @@
261+/* designed in cyberspace by mysterious unknown others, QPd by EdB */
262+@import url("css/basics.css");
263+@import url("css/navbar_superfish.css");
264+
265+body {
266+background-color: white;
267+margin: 0;
268+padding: 0;
269+}
270+
271+.template_wrapper_loggedin, .template_wrapper_anonymous {
272+background-color: black;
273+margin: 2px;
274+padding: 2px;
275+}
276+
277+#PageTop {
278+background-color: gray;
279+margin: 2px;
280+padding: 2px;
281+}
282+#Header {
283+background-color: silver;
284+margin: 2px;
285+padding: 2px;
286+}
287+#Menu {
288+background-color: yellow;
289+margin: 2px;
290+padding: 2px;
291+}
292+
293+#PageTop ul, #Menu ul {
294+margin: 2px;
295+padding: 2px;
296+list-style-type:none;
297+}
298+#PageTop ul li, #Menu ul li {
299+margin: 2px;
300+padding: 2px;
301+display: inline;
302+}
303+
304+#main_content {
305+width: 64%;
306+float: left;
307+clear: both;
308+background-color: purple;
309+margin: 2px;
310+padding: 2px;
311+}
312+#main_content h3 {
313+background-color: lime;
314+margin: 2px;
315+padding: 2px;
316+}
317+.item_content, .item_metadata {
318+background-color: fuchsia;
319+margin: 2px;
320+padding: 2px;
321+}
322+
323+#Sidebar {
324+width: 32%;
325+float: right;
326+background-color: maroon;
327+margin: 2px;
328+padding: 2px;
329+}
330+#Sidebar div {
331+background-color: green;
332+margin: 2px;
333+padding: 2px;
334+}
335+#Sidebar div h3 {
336+background-color: olive;
337+margin: 2px;
338+padding: 2px;
339+}
340+
341+#Footer {
342+clear: both;
343+background-color: red;
344+margin: 2px;
345+padding: 2px;
346+}
347+
348+.messages, .item_prevnext_links {
349+background-color: teal;
350+margin: 2px;
351+padding: 2px;
352+}
353+.item_prevnext_links {
354+background-color: blue;
355+margin: 2px;
356+padding: 2px;
357+}
358+.published {
359+background-color: white;
360+margin: 2px;
361+padding: 2px;
362+}
363+.image_block {
364+background-color: black;
365+margin: 2px;
366+padding: 2px;
367+}
368+
369+.comment_start {
370+background-color: navy;
371+margin: 2px;
372+padding: 2px;
373+}
374+.preview_start {
375+background-color: teal;
376+margin: 2px;
377+padding: 2px;
378+}
379+.trackback_url {
380+background-color: blue;
381+margin: 2px;
382+padding: 2px;
383+}
384+.moderation_msg {
385+background-color: white;
386+margin: 2px;
387+padding: 2px;
388+}
389+
390+.feedback_feed_msg {
391+background-color: black;
392+margin: 2px;
393+padding: 2px;
394+}
395
396=== added file 'templates/basic/style_outlines.css'
397--- templates/basic/style_outlines.css 1970-01-01 00:00:00 +0000
398+++ templates/basic/style_outlines.css 2010-03-26 17:29:27 +0000
399@@ -0,0 +1,134 @@
400+/* designed in cyberspace by mysterious unknown others, QPd by EdB */
401+@import url("css/basics.css");
402+@import url("css/navbar_superfish.css");
403+
404+body {
405+margin: 0;
406+border: none;
407+padding: 0;
408+}
409+
410+.template_wrapper_loggedin, .template_wrapper_anonymous {
411+margin: 2px;
412+border: 2px solid black;
413+padding: 2px;
414+}
415+
416+#PageTop {
417+margin: 2px;
418+border: 2px solid black;
419+padding: 2px;
420+}
421+#Header {
422+margin: 2px;
423+border: 2px solid black;
424+padding: 2px;
425+}
426+#Menu {
427+margin: 2px;
428+border: 2px solid black;
429+padding: 2px;
430+}
431+
432+#PageTop ul, #Menu ul {
433+margin: 2px;
434+padding: 2px;
435+list-style-type:none;
436+}
437+#PageTop ul li, #Menu ul li {
438+margin: 2px;
439+padding: 2px;
440+display: inline;
441+}
442+
443+#main_content {
444+width: 64%;
445+float: left;
446+clear: both;
447+margin: 2px;
448+border: 2px solid black;
449+padding: 2px;
450+}
451+#main_content h3 {
452+margin: 2px;
453+border: 2px solid red;
454+padding: 2px;
455+}
456+.item_content, .item_metadata {
457+margin: 2px;
458+border: 2px solid maroon;
459+padding: 2px;
460+}
461+
462+#Sidebar {
463+width: 32%;
464+float: right;
465+margin: 2px;
466+border: 2px solid black;
467+padding: 2px;
468+}
469+#Sidebar div {
470+margin: 2px;
471+border: 2px solid black;
472+padding: 2px;
473+}
474+#Sidebar div h3 {
475+margin: 2px;
476+border: 2px solid black;
477+padding: 2px;
478+}
479+
480+#Footer {
481+clear: both;
482+margin: 2px;
483+border: 2px solid black;
484+padding: 2px;
485+}
486+
487+.messages, .item_prevnext_links {
488+margin: 2px;
489+border: 2px dotted black;
490+padding: 2px;
491+}
492+.item_prevnext_links {
493+margin: 2px;
494+border: 2px dotted blue;
495+padding: 2px;
496+}
497+.published {
498+margin: 2px;
499+border: 2px solid black;
500+padding: 2px;
501+}
502+.image_block {
503+margin: 2px;
504+border: 2px solid purple;
505+padding: 2px;
506+}
507+
508+.comment_start {
509+margin: 2px;
510+border: 2px dashed black;
511+padding: 2px;
512+}
513+.preview_start {
514+margin: 2px;
515+border: 2px dashed black;
516+padding: 2px;
517+}
518+.trackback_url {
519+margin: 2px;
520+border: 2px dashed black;
521+padding: 2px;
522+}
523+.moderation_msg {
524+margin: 2px;
525+border: 2px dashed black;
526+padding: 2px;
527+}
528+
529+.feedback_feed_msg {
530+margin: 2px;
531+border: 2px solid black;
532+padding: 2px;
533+}
534
535=== modified file 'templates/custom/print.css'
536--- templates/custom/print.css 2010-03-06 16:19:45 +0000
537+++ templates/custom/print.css 2010-03-26 17:29:27 +0000
538@@ -14,6 +14,6 @@
539
540 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
541 /* all we really do for printing is hide the stuff we don't want to print */
542-#stuff, .more_stuff, form.bComment {
543+.PageTop, .pageHeader, .top_menu, .bSideBar, form.bComment {
544 display: none;
545 }
546
547=== modified file 'templates/evocamp/print.css'
548--- templates/evocamp/print.css 2010-03-06 16:19:45 +0000
549+++ templates/evocamp/print.css 2010-03-26 17:29:27 +0000
550@@ -13,7 +13,7 @@
551 }
552
553 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
554-/* all we really do for printing is hide the stuff we don't want to print */
555+/* all we do is hide the stuff we don't want to print */
556 #header, #nav, #midcontent, #contentright, form.bComment {
557 display: none;
558 }
559
560=== modified file 'templates/evopress/print.css'
561--- templates/evopress/print.css 2010-03-06 16:19:45 +0000
562+++ templates/evopress/print.css 2010-03-26 17:29:27 +0000
563@@ -13,7 +13,7 @@
564 }
565
566 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
567-/* all we really do for printing is hide the stuff we don't want to print */
568+/* all we do is hide the stuff we don't want to print */
569 #header, .top_menu, #sidebar, form.bComment {
570 display: none;
571 }
572
573=== modified file 'templates/glossyblue/print.css'
574--- templates/glossyblue/print.css 2010-01-08 10:32:06 +0000
575+++ templates/glossyblue/print.css 2010-03-26 17:29:27 +0000
576@@ -1,82 +1,19 @@
577-/*
578-Theme Name: GlossyBlue
579-Theme URI: http://www.ndesign-studio.com
580-Description: WP glossy theme designed by <a href="http://www.ndesign-studio.com">N.Design Studio</a>.
581-Version: 1.4
582-Author: Nick La
583-Author URI: http://www.ndesign-studio.com
584-
585- This theme was designed and built by Nick La.
586-
587- By downloading and using this theme, you agree to the following terms:
588- - You may NOT resell this theme
589- - A link back to N.Design Studio must be retained in the footer (either modified or unmodified)
590- - You may use this theme for personal or commercial projects
591- - You may modify, translate or distribute
592-
593-*/
594-
595-#page {
596- width: 100%;
597- border: none;
598- background: none;
599-}
600-#header {
601- border-bottom: 3px solid #59780a;
602- height: auto;
603-}
604-#headerimg {
605- width: auto;
606-}
607-#headerimg .description{
608- color: #666666;
609- text-align: right;
610- padding-bottom: 3px;
611- right: 0px;
612- position: absolute;
613- left: auto;
614-}
615-h1 {
616- margin:0px;
617- font: bold 36px/100% "Trebuchet MS", Tahoma, Arial;
618- text-align: right;
619- padding-bottom: 3px;
620-}
621-h1 a, h1 a:visited{
622- color: #000;
623- text-decoration: none;
624-}
625-#content {
626- padding: 10px 0px 30px 0px;
627- width: 100%;
628-}
629-.post-date {
630- font-size: 11px;
631- text-transform: uppercase;
632- color: #666666;
633- height: auto;
634-}
635-.post-month, .post-day {
636- color: #666666;
637- display: inline;
638- font-size: 11px;
639- padding: 0px;
640- margin: 0px;
641-}
642-.post-title {
643- margin: 0px;
644- width: 100%;
645- clear: both;
646-}
647-.post-cat {
648- float:left;
649- font-size: 11px;
650- padding: 0;
651-}
652-.post-comments, .post-calendar {
653- float: right;
654- font-size: 11px;
655-}
656-#comments, #respond, .navigation, #nav, #commentform, #sidebar, #footer, #credits {
657- display: none;
658-}
659\ No newline at end of file
660+/* BEGIN WITH VERY BASIC CROSS-TEMPLATE STUFF ... */
661+/* generic font family, print-friendly size */
662+body {
663+font-family: serif; font-size: 11pt;
664+}
665+/* hide the navbar */
666+#toolbar {
667+display: none;
668+}
669+/* no image borders */
670+img {
671+border: none;
672+}
673+
674+/* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
675+/* all we do is hide the stuff we don't want to print */
676+#header, #sidebar, #footer, form.bComment {
677+display: none;
678+}
679
680=== modified file 'templates/natural_pink/print.css'
681--- templates/natural_pink/print.css 2010-03-06 16:19:45 +0000
682+++ templates/natural_pink/print.css 2010-03-26 17:29:27 +0000
683@@ -14,6 +14,6 @@
684
685 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
686 /* all we really do for printing is hide the stuff we don't want to print */
687-#stuff, .more_stuff, form.bComment {
688+.PageTop, .pageHeader, .bSideBar, form.bComment {
689 display: none;
690 }
691
692=== modified file 'templates/nifty_corners/_item_block.inc.php'
693--- templates/nifty_corners/_item_block.inc.php 2010-02-17 04:47:47 +0000
694+++ templates/nifty_corners/_item_block.inc.php 2010-03-26 17:29:27 +0000
695@@ -32,10 +32,11 @@
696
697 <div id="<?php $Item->anchor_id(); ?>" lang="<?php $Item->lang(); ?>">
698
699-<div class="bTitle"><h3 class="bTitle"><?php $Item->title(); ?></h3></div>
700-
701-<div class="<?php $Item->div_classes( $params ) ?>" >
702-
703+<div class="bTitle">
704+<h3 class="bTitle"><?php $Item->title(); ?></h3>
705+</div>
706+
707+<div class="<?php $Item->div_classes( $params ) ?>">
708 <div class="bSmallHead">
709 <?php
710 // display the item's permalink
711@@ -118,3 +119,4 @@
712 locale_restore_previous(); // restores previous (Blog) locale
713 ?>
714 </div>
715+</div>
716
717=== modified file 'templates/nifty_corners/index.main.php'
718--- templates/nifty_corners/index.main.php 2010-02-17 04:47:47 +0000
719+++ templates/nifty_corners/index.main.php 2010-03-26 17:29:27 +0000
720@@ -43,11 +43,9 @@
721 ?>
722
723 <div class="wrapper">
724-
725 <div class="wrapper2">
726
727 <div class="outerwrap">
728-
729 <div class="innerwrap">
730
731 <div class="PageTop">
732@@ -80,11 +78,11 @@
733 </div>
734
735 </div>
736-
737 </div>
738
739+<!-- end of outerwrap + innerwrap -->
740+
741 <div class="posts">
742-
743 <div class="innerwrap">
744
745 <div class="top_menu">
746@@ -163,7 +161,7 @@
747 'image_size' => 'fit-400',
748 ) );
749
750- }
751+}
752
753 // prev/next links on multi-post pages
754 mainlist_page_links( array(
755@@ -183,9 +181,11 @@
756 'disp_page' => '',
757 ) );
758 ?>
759-</div>
760-
761-</div>
762+
763+</div>
764+</div>
765+
766+<!-- end of posts + innerwrap ??? -->
767
768 <div class="bSideBar">
769
770@@ -214,6 +214,8 @@
771
772 <div class="clear"><img src="<?php echo $rsc_url; ?>img/blank.gif" width="1" height="1" alt="" /></div>
773
774+</div>
775+
776 <?php
777 // --- --- --- --- --- --- --- --- --- --- ---
778 // --- BODY FOOTER INCLUDED HERE ---
779@@ -221,8 +223,6 @@
780 ?>
781 </div>
782
783-</div>
784-
785 <?php
786 // activate the sonic transducer
787 $Plugins->trigger_event('TemplateEndHtmlBody');
788
789=== modified file 'templates/nifty_corners/print.css'
790--- templates/nifty_corners/print.css 2010-03-06 16:19:45 +0000
791+++ templates/nifty_corners/print.css 2010-03-26 17:29:27 +0000
792@@ -14,6 +14,6 @@
793
794 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
795 /* all we really do for printing is hide the stuff we don't want to print */
796-#stuff, .more_stuff, form.bComment {
797+.outerwrap, .top_menu, .bSideBar, form.bComment {
798 display: none;
799 }
800
801=== modified file 'templates/pixelgreen/print.css'
802--- templates/pixelgreen/print.css 2010-03-06 16:19:45 +0000
803+++ templates/pixelgreen/print.css 2010-03-26 17:29:27 +0000
804@@ -14,6 +14,6 @@
805
806 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
807 /* all we really do for printing is hide the stuff we don't want to print */
808-#stuff, .more_stuff, form.bComment {
809+#header, .headerphoto, #sidebar, form.bComment {
810 display: none;
811 }
812
813=== modified file 'templates/terrafirma/print.css'
814--- templates/terrafirma/print.css 2010-03-06 16:19:45 +0000
815+++ templates/terrafirma/print.css 2010-03-26 17:29:27 +0000
816@@ -14,6 +14,6 @@
817
818 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
819 /* all we really do for printing is hide the stuff we don't want to print */
820-#stuff, .more_stuff, form.bComment {
821+.pageHeader, #splash, .top_menu, .bSideBar, form.bComment {
822 display: none;
823 }
824
825=== modified file 'templates/vastitude/print.css'
826--- templates/vastitude/print.css 2010-03-06 16:19:45 +0000
827+++ templates/vastitude/print.css 2010-03-26 17:29:27 +0000
828@@ -14,6 +14,6 @@
829
830 /* NOW FOR THE TEMPLATE-SPECIFIC STUFF ... */
831 /* all we really do for printing is hide the stuff we don't want to print */
832-#stuff, .more_stuff, form.bComment {
833+#prewrap, #bannertop, #bannermid, .submenu, .rightside, form.bComment {
834 display: none;
835 }

Subscribers

People subscribed via source and target branches