Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1372229

    Hallo. Bietet Enfold eventuell mittlerweile eine Funktion um Seiten auszudrucken – also um WP Seiten in Druckansicht darzustellen?

    Ich weiche aktuell immer noch auf Plugins aus aber es wäre grandios wenn ihr diese Funktion irgendwann mal einbauen würdet. Danke für eure tolle Arbeit und lg, Alex

    #1372383

    Hey diefleischerei,
    Thanks for your question you can create a print button with this code in the page:
    <button class="print" onclick="window.print()">Print This</button>
    and this css:

    button.print {
        background-color: #0366d6;
        color: #ffffff;
        border-radius: 3px 3px 3px 3px;
        border: none;
        border-width: 1px 1px 1px 1px;
    }

    This would be the results:
    2022-11-12_012.png
    You will probably also want to use the print media query to set which elements print and which ones to avoid, for example:

    @media print { 
    	p {
    	font-size: 18px;
    	line-height: 1.1em;
    	}
            .sidebar {
    	display:none;
    	}
    	.single-post #content {
    	text-align: center;
    	top: unset;
    	left: unset;
    	transform: none;
    	position: relative;
    	background: none;
    	width: 100%;
    	padding: 0;
        }
    }

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Drucken’ is closed to new replies.