Reputation: 23
I'm trying to make a print page on the product view on magento. I want when I click on the button to generate a pop where I will have name, some images, description, brand ....
I don;t want to change the style/css deseign o the print page... I want exactly like on this page http://tinyurl.com/btsdobf click on the Printeaza pagina to see it in action. I want to put more attributs on print page layout...
Upvotes: 2
Views: 7457
Reputation: 272
you mean javascript:window.print();
?
style to control page design:
<link rel="stylesheet" type="text/css" href="http://demo3.magentocommerce.com/skin/frontend/default/default/css/print.css" media="print" />
Upvotes: 0
Reputation: 2338
You can edit the layout of your print page by customizing the print.css
file in your theme.
See this question: magento print friendly page for products
Upvotes: 2