Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • malar 97 posts 206 karma points
    Sep 24, 2017 @ 19:49
    malar
    0

    Print page

    Hello Team,

    I have a small doubt about print page. This is a sample link: http://deo.dk/debatmoeder/sjaellandkoebenhavn/2017-efteraar/mere-merkel-hvad-betyder-det-for-eu/ enter image description here When i click print , it is displaying as it is. Now i have to do a difficult task. I have to alter the size of the picture and move the text below the picture to right side of the picture. This adjustment facility should be only in the print page , not in the normal web page. Can you please help me.

  • Tobias Klika 101 posts 568 karma points c-trib
    Sep 26, 2017 @ 14:28
    Tobias Klika
    100

    This is done via CSS. You just need to add an additional media query and edit your content in there.

    In your case this would be something like:

    @media print  {
    
        .your-image {
            width: 240px;
            ...
        }
    
        .anther-class {
            ...
        }
    }
    

    It's as simple as it looks ;-)

  • malar 97 posts 206 karma points
    Sep 28, 2017 @ 11:37
    malar
    0

    I can understand now .Thank you.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies