Tagged: 

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

    Hello everyone,
    i am trying to create a print layout for an enfold website, unfortunately my previous attempts failed…

    I have added the following line to the header.php and copied header.php to the child-theme folder:
    <link rel=”stylesheet” type=”text/css” media=”print” href=”<?php bloginfo(‘stylesheet_directory’); ?>/print.css” />

    Then I added a print.css to the child-theme folder. For example, if I want to hide the layer slider, I specify @media print{.ls-fullscreen-wrapper{display:none;}} in the print.css Unfortunately this has no effect on the printout of the page.

    Can you give me a hint what I am doing wrong?

    Thanks for your effort and best regards

    #1259141

    Hey BenRi,
    Sorry for the very late reply and thanks for the link.
    To hide the layerslider from print, try adding this css:

    @media print{
    	#layer_slider_1,.ls-slide {display: none !important;}
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.