Hello Guys,
I'll try and explain this as best possible, however my page is behind a secure login so i'm unable to show you a live version of my issue.
Basicly, I have a 'pod' constructed of DIV's which works fine, and I place some <p>'s inside it and they all work as I would expect them too.
However, when I place anything other than a P, such as another DIV below my other P's then the text disapears, there is still a space residing for it, and if you 'highlight' it then the text reapears, and then disapears if you fresh.
So let me cover the basics of my layout.
This Works Fine
This Does Not
Like i say that only a rough representation, i hope this is a common problem you guys come accross regularly.
Many thanks,
Rob
I'll try and explain this as best possible, however my page is behind a secure login so i'm unable to show you a live version of my issue.
Basicly, I have a 'pod' constructed of DIV's which works fine, and I place some <p>'s inside it and they all work as I would expect them too.
However, when I place anything other than a P, such as another DIV below my other P's then the text disapears, there is still a space residing for it, and if you 'highlight' it then the text reapears, and then disapears if you fresh.
So let me cover the basics of my layout.
This Works Fine
Code:
<div class="pod">
<p>This is some text</p>
</div>
This Does Not
Code:
<div class="pod">
<p>This is some text</p>
<div style="clear:both;"></div>
<div style="float:left;width:49%;">
<div>
<ul>
<li>Text</li>
</ul>
</div>
</div>
<div style="float:right;width:49%;">
<div>
<ul>
<li>Text</li>
</ul>
</div>
</div>
</div>
Like i say that only a rough representation, i hope this is a common problem you guys come accross regularly.
Many thanks,
Rob