PC Review


Reply
Thread Tools Rate Thread

That CSS & Print subject again

 
 
=?Utf-8?B?Vml2RA==?=
Guest
Posts: n/a
 
      3rd Jun 2005
Thanks for your previous help on this subject - the problem is almost
resolved but...

When using Firefox my stylesheet below my printed page is perfect. (
everything within td.print-contents and no border).

When I use IE 6, my page prints as above but has a border around it - which
I do not want.

Am I missing a line of code in the style sheet that IE needs?

I also need to make the site accessable to visitors using screen readers -
can I use a similar stylesheet to achieve this.

Any help would be greatly appreciated.

Thanks

Stlyle sheet

body {
color : black;
background-colour : white;
font : Arial, sans-serif;
font-size: 12pt;
}
TABLE.main {
border-collapse: collapse;
border:0;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
width: 100%;
height:100%
colour: black;
background-colour: white;
}

td.logo {
display:none
}
td.main-navigation {
display:none
}
td.print-contents{
display:block
}
td.text-navigation {
display:none
}
 
Reply With Quote
 
 
 
 
Murray
Guest
Posts: n/a
 
      3rd Jun 2005
colour != color

body {
color : black;
background-colour : white; ****
font : Arial, sans-serif;
font-size: 12pt;
}
TABLE.main {
border-collapse: collapse;
border:0;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
width: 100%;
height:100%
colour: black; ****
background-colour: white; ****
}


--
Murray
============

"VivD" <(E-Mail Removed)> wrote in message
news:6B2C47DD-2A54-4F47-8709-(E-Mail Removed)...
> Thanks for your previous help on this subject - the problem is almost
> resolved but...
>
> When using Firefox my stylesheet below my printed page is perfect. (
> everything within td.print-contents and no border).
>
> When I use IE 6, my page prints as above but has a border around it -
> which
> I do not want.
>
> Am I missing a line of code in the style sheet that IE needs?
>
> I also need to make the site accessable to visitors using screen readers -
> can I use a similar stylesheet to achieve this.
>
> Any help would be greatly appreciated.
>
> Thanks
>
> Stlyle sheet
>
> body {
> color : black;
> background-colour : white;
> font : Arial, sans-serif;
> font-size: 12pt;
> }
> TABLE.main {
> border-collapse: collapse;
> border:0;
> left: 0px;
> top: 0px;
> margin: 0px;
> padding: 0px;
> width: 100%;
> height:100%
> colour: black;
> background-colour: white;
> }
>
> td.logo {
> display:none
> }
> td.main-navigation {
> display:none
> }
> td.print-contents{
> display:block
> }
> td.text-navigation {
> display:none
> }



 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      4th Jun 2005
VivD must be from that other part of the world where we use English
spelling.

As an Australian, it can sometimes be confusing for me to remember
e.g. color not colour
There are others, but no so important
e.g. favorite not favourite

LOL
--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au

Murray wrote:
> colour != color
>
> body {
> color : black;
> background-colour : white; ****
> font : Arial, sans-serif;
> font-size: 12pt;
> }
> TABLE.main {
> border-collapse: collapse;
> border:0;
> left: 0px;
> top: 0px;
> margin: 0px;
> padding: 0px;
> width: 100%;
> height:100%
> colour: black; ****
> background-colour: white; ****
> }
>
>
>
> "VivD" <(E-Mail Removed)> wrote in message
> news:6B2C47DD-2A54-4F47-8709-(E-Mail Removed)...
>> Thanks for your previous help on this subject - the problem is almost
>> resolved but...
>>
>> When using Firefox my stylesheet below my printed page is perfect. (
>> everything within td.print-contents and no border).
>>
>> When I use IE 6, my page prints as above but has a border around it -
>> which
>> I do not want.
>>
>> Am I missing a line of code in the style sheet that IE needs?
>>
>> I also need to make the site accessable to visitors using screen
>> readers - can I use a similar stylesheet to achieve this.
>>
>> Any help would be greatly appreciated.
>>
>> Thanks
>>
>> Stlyle sheet
>>
>> body {
>> color : black;
>> background-colour : white;
>> font : Arial, sans-serif;
>> font-size: 12pt;
>> }
>> TABLE.main {
>> border-collapse: collapse;
>> border:0;
>> left: 0px;
>> top: 0px;
>> margin: 0px;
>> padding: 0px;
>> width: 100%;
>> height:100%
>> colour: black;
>> background-colour: white;
>> }
>>
>> td.logo {
>> display:none
>> }
>> td.main-navigation {
>> display:none
>> }
>> td.print-contents{
>> display:block
>> }
>> td.text-navigation {
>> display:none
>> }



I choose Polesoft Lockspam to fight spam, and you?
http://www.polesoft.com/refer.html


 
Reply With Quote
 
=?Utf-8?B?Vml2RA==?=
Guest
Posts: n/a
 
      5th Jun 2005
Thanks for that - I will have to remember not to use English spelling,.
I have corrected the spelling - but I still have the same result. The
printed page is perfect in Firefox but IE leaves a border whichI do not want.

I have devided up my page using

<table class="main" >
<td class="main-navigation" >
<td class="print-this" >
etc

my stylesheet now looks like this

body {
color : black;
background-color : white;
font : Arial, sans-serif;
font-size: 12pt;
}
TABLE.main {
border-collapse: collapse;
border:0;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
width: 100%;
color: black;
background-color: white;
}

td.logo {
display:none
}
td.main-navigation {
display:none
}
td.print-this{
display:block
}
td.text-navigation {
display:none
}

Any other ideas - thanks


"Murray" wrote:

> colour != color
>
> body {
> color : black;
> background-colour : white; ****
> font : Arial, sans-serif;
> font-size: 12pt;
> }
> TABLE.main {
> border-collapse: collapse;
> border:0;
> left: 0px;
> top: 0px;
> margin: 0px;
> padding: 0px;
> width: 100%;
> height:100%
> colour: black; ****
> background-colour: white; ****
> }
>
>
> --
> Murray
> ============
>
> "VivD" <(E-Mail Removed)> wrote in message
> news:6B2C47DD-2A54-4F47-8709-(E-Mail Removed)...
> > Thanks for your previous help on this subject - the problem is almost
> > resolved but...
> >
> > When using Firefox my stylesheet below my printed page is perfect. (
> > everything within td.print-contents and no border).
> >
> > When I use IE 6, my page prints as above but has a border around it -
> > which
> > I do not want.
> >
> > Am I missing a line of code in the style sheet that IE needs?
> >
> > I also need to make the site accessable to visitors using screen readers -
> > can I use a similar stylesheet to achieve this.
> >
> > Any help would be greatly appreciated.
> >
> > Thanks
> >
> > Stlyle sheet
> >
> > body {
> > color : black;
> > background-colour : white;
> > font : Arial, sans-serif;
> > font-size: 12pt;
> > }
> > TABLE.main {
> > border-collapse: collapse;
> > border:0;
> > left: 0px;
> > top: 0px;
> > margin: 0px;
> > padding: 0px;
> > width: 100%;
> > height:100%
> > colour: black;
> > background-colour: white;
> > }
> >
> > td.logo {
> > display:none
> > }
> > td.main-navigation {
> > display:none
> > }
> > td.print-contents{
> > display:block
> > }
> > td.text-navigation {
> > display:none
> > }

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
subject header print Gigi Microsoft Outlook Discussion 2 28th Nov 2007 02:12 PM
Don't want from, subject etc. to print =?Utf-8?B?UmVuZWU=?= Microsoft Outlook Discussion 2 24th May 2007 03:14 PM
Print an email without the subject, to, etc at the top sklett Microsoft Outlook 2 18th Dec 2006 11:51 PM
Re: How do I print subject dividers Joseph Meehan Microsoft Access 0 14th Apr 2005 12:36 AM
Re: Print only the To:,From:Subject: etc... Sue Mosher [MVP-Outlook] Microsoft Outlook Discussion 0 24th Mar 2004 10:35 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:04 AM.