Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #848658

    Hello,
    my problem is embed pano in full screen mode with heading.
    I tried put coustom css in color section and grid row. Results are the same.
    This is how it looks after custom css aplied

    printscreen

    #849206

    Hey bart_one,

    Can you post a link to your site? so we can take a closer look.

    Best regards,
    Nikko

    #849265

    The problem can be with an iframe or with a source page

    example: iframe: width:100% height:100%

    second example iframe width:100% height:900px

    • This reply was modified 7 years, 3 months ago by bart_one.
    #849503

    Hi,

    I’m not really sure what’s the problem with it, but since you used percentage for height in an iframe that would really cause the height to be low since it’s container doesn’t have a height (to be specific it gets the height from the elements inside it like the iframe), you can try that with a default wordpress editor and you’ll see the same results. I think the 2nd example looks good and specifying it in px gives it more specific height value.

    Best regards,
    Nikko

    #849673

    You’re right the second version looks ok but only on PC.
    On tablets and smartphones this does not work properly. Iframe is bigger than screen.
    Is it possible to display an iframe (full content area) correctly on my computers and tablets?

    #850294

    Hi,

    Instead of percentage, use viewport size value. Example.

    iframe {
        width: 90vw;
        height: 90vh;
    }

    Best regards,
    Ismael

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