I’m setting up the Receptar theme for a recipe site, and it seems well suited. The problem is it isn’t print friendly at all. For a recipe site, that’s pretty important. I tried the Print Friendly plugin, but it only prints the instructions (main page content). Since Receptar puts all the ingredients (plus other metadata like difficultly, how many servings, etc.) in the head section (where you normally put things like title:, date: etc.), I’m wondering how I can make it printer friendly and also print the ingredients.
tcervo,
Have you tried using a media query to make adjustments for printing?
For example something like:
@media print {
#masthead,
.entry-media.resp_video,
.secondary,
.site-header-widgets,
.sharedaddy.sd-sharing-enabled,
.jp-relatedposts,
.comments-area-wrapper {
display: none !important;
}
.site-inner,
#content,
.site-content {
max-width: 100% !important ;
width: 100% !important;
margin: 0 !important;
}
}
Thanks for the suggestion. I’ll give that a try this weekend. For now, I’ve just started moving the ingredients into the body.
Hi there - Did you try this? Did it work? can you please share your feedback ?
1 Like
A feedback on that matter would be very appreciated. How did you solve the problem?
1 Like