im developing a SEOed template for phpBB
phpBB templates are table based and they are not semantic.
im trying to design a clean, fast and semantic template for phpbb
im not professional in CSS and i encounter with some problems
1- im my design all forums are in <li> tag and i have <div> tag in that <li> tag
this <div> itself is contain two other <div> tag
please see this part of code
- Code: Select all
<div>
<ul>
<!-- BEGIN forumrow -->
<li><div><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a><br />
<em>{catrow.forumrow.FORUM_DESC}</em></div>
<div><span class="stat">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS} {catrow.forumrow.TOPICS} {L_TOPICS} - {catrow.forumrow.POSTS} {L_POSTS} - {catrow.forumrow.LAST_POST}</span></div></li>
<!-- END forumrow -->
</ul>
</div>
</div>
now i want to float one of that <div> tag in right side of an <li> tag
see this picture
2- there is a extra space between a <div> and <ul> in IE 5.5 and 6
please see this picture
how can i remove it ?
3- i have added margin to bottom of my #container div but IE don't pay attention to this margin
margin: 40px 50px 40px 50px;
in firefox everything is OK but IE ignore bottom margin
you can see my design at this address
-http://www.persia-cms.com/test/
thanks in advance

