jglovier/resume-template

Resume_header_intro not shown in print preview

abiduzz420 opened this issue · 4 comments

The intro section at the beginning of the resume is not shown in print preview. I tried to save in PDF format and the Intro was omitted. The resume starts off directly with the Experience after my name.

@abiduzz420 thanks for the heads up. I'll look into it.

@abiduzz420 I could be mistaken, and @jglovier would certainly be the all-knower of all this, but I think that's default by design - or at least you could modify your specific resume's html to show it during a print event. The class no-print is assigned to all elements that are to be omitted during a print - when you say "Intro" I am suspecting you're referring to the Executive Summary, if you have a look in the ~/_layouts/resume.html file, and find the executive summary:

<div class="executive-summary no-print" itemprop="description">
    {{ site.resume_header_intro }}
</div>

So if you have anything within your resume you would like to omit during a print or for that matter, display during a print, you can just append or remove the no-print class as necessary.

Thanks @Minimalistic That was helpful. no-print it is.

Yeah, that was added in #22, but I'm certainly open to PRs to modify the current behavior. 👍