Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #462107

    Our site has an iframe on the home page. In order for the content to be in full view the height has to be defined in the value below. As you go responsive with the site we need something to change the height as you go down. We have this in a code block on our page:

    <iframe src=”http://domain.com&#8221; scrolling=”no” frameborder=”no” align=”center” height=”420px” width=”100%”></iframe>

    • This topic was modified 8 years, 10 months ago by ronduring.
    #462499

    Hi ronduring!

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Cheers!
    Rikard

    #462762
    This reply has been marked as private.
    #463132

    Hi!

    It seems the site you posted is down, I check with http://www.downforeveryoneorjustme.com/

    Cheers!
    Rikard

    #463507

    The site was in process of going live. Please check the link in private. Thanks.

    #463795

    Hey!

    We in the process of updating the forum functionality and there seems to be a slight glitch with the information in the private area, could you try to submit it again because I can’t see any private information in your last post.

    Regards,
    Rikard

    #463797

    Posted link.

    #463798

    Link

    #463800

    The original link I sent is working, or just use www. the domain I sent and you should be able to preview the site.

    #464400

    Hey!

    I’m really sorry about the forum functionality not working, it should be fixed now though if you don’t mind trying again? I tried both devsite. and www. but I couldn’t access either of them?

    Cheers!
    Rikard

    #464560

    Link below in private:

    #465171

    Hey!

    Sorry but it’s still not loading on my end, do you have any types of country restrictions on the site?

    Cheers!
    Rikard

    #465177

    What country are you in?

    #465179

    All country restrictions are off on my end.

    #465276

    Hi!

    Change your iframe code:

    <iframe src=”http://domain.com” scrolling=”no” frameborder=”no” align=”center” id="custom_iframe"></iframe>
    

    And add this to Quick CSS:

    #custom_iframe{
    height: 400px;
    }
    @media only screen and (max-width: 767px) {
    #custom_iframe{
    height: 200px;
    }
    }

    Adjust as needed.

    Cheers!
    Josue

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