Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print "content" positioned left, want full page print

Status
Not open for further replies.

PcView

Technical User
Aug 13, 2002
14
0
0
BE
Hi,

I am new to css and I am using dreamweaver mx 2004 to create a css for print.

I supressed the nav + header + footer (display: none). No problem so far ;)

Problem :

The "content" is boxed left, and I want it over a full page (horizontaly).

Any ideas ?

Thanks,
Tony

Tony
 
Assuming your content is in a <div> with a class of "contentArea", putting this in your print css should do it:

Code:
DIV.contentArea {
	width: 99%;
}

Mike.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top