This is a CSS "problem".kannschonsein wrote:hi wim,
unfortunately that does not really know
http://www.heilbronner-wetter.de/wetter ... /index.php
the frame is not displayed on the left, I can adjust the frame (php)?
I use Web to date 8 and have never left but it does not work.
do you have an idea?
The path to the iframe goes:
body => main => mainbox => content => the iframe without a name
main is set in the css to be 100% wide => OK
mainbox is set in css to
Code: Select all
#mainbox {
width: 960px;
padding: 20px 0;
margin: 0 auto;
}
Then the content is set to always be at the right (float:right) and be only 680px wide.
Code: Select all
#content {
float: right;
width: 680px;
}
Code: Select all
<iframe src="http://heilbronner-wetter.de/weather2/index.php?p=10&lang=de&ipad" height="1000" width="180%" frameborder="0" scrolling="no" align="left">. .. . </iframe>
The real contents of the iframe is 1100px so the remainning 114 px is to the left / right of the index.php you are displaying inside the iframe.
I made a screenshot to explain a bit as it is difficult to explain in "my" English.
Wim