Page 2 of 3

Full Bleed Outside WebPage?

Posted: Wed Oct 10, 2012 10:13 am
by Maryna Brodina

Hello! Could you clarify please what exactly doesn't work.


Full Bleed Outside WebPage?

Posted: Wed Oct 10, 2012 1:37 pm
by Jerry Levine

Marina - Sorry, the link I posted above shows what happens when I set a div to height 100%.

I've deleted the "div" from the CSS and you should see what's happening.


Full Bleed Outside WebPage?

Posted: Wed Oct 10, 2012 1:41 pm
by Jerry Levine

So now you can see what happens. I have an external webpage being loaded within Tiggzi. On width, it's responsive and fills 100%. On height, it looks like it's only going to 150px based on the container, and none of my CSS changes are allowing me to change the height.


Full Bleed Outside WebPage?

Posted: Wed Oct 10, 2012 1:54 pm
by Jerry Levine

I think I've got it. I sent min-height: to 85% and it seems to finally override everything.


Full Bleed Outside WebPage?

Posted: Wed Oct 10, 2012 1:55 pm
by Jerry Levine

That's no good either...now it's overriding the other page, I suppose?


Full Bleed Outside WebPage?

Posted: Wed Oct 10, 2012 1:58 pm
by Jerry Levine

well, I'm closer. I'll post again if I can't clean this up.


Full Bleed Outside WebPage?

Posted: Tue Jan 06, 2015 2:17 am
by Tooba Atif

I am having the same issue..
Iframe is just showing the page on 1/4th of the screen but i want it to fill the screen whether its iphone or ipad screen.

Any help please?


Full Bleed Outside WebPage?

Posted: Tue Jan 06, 2015 4:13 am
by Yurii Orishchuk

Hi Tooba,

Here is a solution for you:

1 Open HTML component properties.

2 Set dimensions: as "auto" and "auto". http://prntscr.com/4wlwvb/direct

3 Set for this HTML component "Class Name" property as "fullScreen" http://prntscr.com/4wlwpp/direct

4 Create new CSS. And fill it by following code:

pre

.fullScreen{
position: absolute;
left: 0px;
right: 0px;
/* you need to adjust it for header /
top: 54px;
/ you need to adjust it for footer */
bottom: 54px;
width: auto;
height: auto;
}

/pre

5 Click "Edit HTML" for this HTML component and fill it with following code: http://prntscr.com/4wlxir/direct

pre

<iframe src="http:&#47;&#47;appery&#46;io" width="100%" height="100%"</iframe

/pre

That's all.

Regards.


Full Bleed Outside WebPage?

Posted: Tue Jan 06, 2015 4:29 am
by Tooba Atif

Hi Yurii,

I have tried this solution already.. have seen this in other link's but still i wont get the full screen on the page.
I have tried this as well as i was unable to scroll the screen on the phone after publishing the ios app.
-webkit-overflow-scrolling:touch; overflow: auto;

this is my css

.htmlOtherSite {
position: absolute;
top:5px; left:0; right:0; bottom:5px;

Code: Select all

 border: 0; 
 width:auto;  
 height:auto; 

/* -webkit-overflow-scrolling:touch; overflow: auto;*/

}

Please advise or tell me if you require the login info for checking this yourself.

Thanks


Full Bleed Outside WebPage?

Posted: Tue Jan 06, 2015 5:12 am
by Yurii Orishchuk

Tooba,

Please specify your app public link and steps to reproduce this problem.

We will take a look.

Regards.