| Re: "Gold" Theme problem |
| by bwirum on 2004/1/16 17:25:43 Heh, thanks. Working perfectly! Told you it was roughly 150 px... Can't believe I missed that. Great theme now.. Great! |
| Re: "Gold" Theme problem |
| by philou on 2004/1/16 15:57:54 In the file theme.html.. ligne 66 you have this : le="color: #000000"><?php <table border="0" cellpadding="0" cellspacing="0"width="100%" height="150"> erase the le="color: #000000"><?php height="150" and the theme work fine |
| Re: "Gold" Theme problem |
| by Mithrandir on 2004/1/16 15:21:39 Hmmm - I don't like the "height=150" in the first table after <{if $xoops_showcblock == 1}> but I am no pixel-king, so I don't know if that is part of the problem. I do know that IE and other browsers have different views on how to translate height. |
| "Gold" Theme problem |
| by bwirum on 2004/1/16 15:18:32 When I use the Gold theme I get a blank space above my center blocks, roughly 150 px high, for no (to me) apparent reason... This is my center blocks theme code: le="color: #000000"><?php <td width="100%" height="100%" valign="top"> <!-- Display center blocks if any --> <{if $xoops_showcblock == 1}> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="150"> <tr><td width="49%" valign="top"> <!-- Start center-left blocks loop --> <{foreach item=block from=$xoops_clblocks}> <table border="0" cellpadding="1" cellspacing="1" bgcolor="#EE9E5B" width="100%"> <tr><td bgcolor="#FFFF94" valign="top"> <table border="0" cellpadding="0" cellspacing="1" width="100%" bgcolor="#202020"> <tr><td valign="top" bgcolor="#333333"> <table border="0" cellpadding="0" cellspacing="1" width="100%" height="20" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>bg-tab-menu.gif" class="blockTitle"> <{$block.title}> </td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="2" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>hr.gif"></td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td valign="top" class="blockContent"> <{$block.content}> </td></tr></table></td></tr></table></td></tr></table> <br> <{/foreach}> <!-- End center-left blocks loop --> </td><td width="1%"></td><td width="48%" valign="top"> <!-- Start center-right blocks loop --> <{foreach item=block from=$xoops_crblocks}> <table border="0" cellpadding="1" cellspacing="1" bgcolor="#EE9E5B" width="100%"> <tr><td bgcolor="#FFFF94" valign="top"> <table border="0" cellpadding="0" cellspacing="1" width="100%" bgcolor="#202020"> <tr><td valign="top" bgcolor="#333333"> <table border="0" cellpadding="0" cellspacing="1" width="100%" height="20" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>bg-tab-menu.gif" class="blockTitle"> <{$block.title}> </td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="2" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>hr.gif"></td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td valign="top" class="blockContent"> <{$block.content}> </td></tr></table></td></tr></table></td></tr></table> <br> <{/foreach}> <!-- End center-right blocks loop --> </td></tr></table> <!-- Start center-center blocks loop --> <{foreach item=block from=$xoops_ccblocks}> <table border="0" cellpadding="1" cellspacing="1" bgcolor="#EE9E5B" width="100%"> <tr><td bgcolor="#FFFF94" valign="top"> <table border="0" cellpadding="0" cellspacing="1" width="100%" bgcolor="#202020"> <tr><td valign="top" bgcolor="#333333"> <table border="0" cellpadding="0" cellspacing="1" width="100%" height="20" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>bg-tab-menu.gif" class="blockTitle"> <{$block.title}> </td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="2" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>hr.gif"></td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td valign="top" class="blockContent"> <{$block.content}> </td></tr></table></td></tr></table></td></tr></table> <br> <{/foreach}> <!-- End center-center blocks loop --> <{/if}> <!-- End display center blocks --> <!-- Start content --> <table border="0" cellpadding="1" cellspacing="1" bgcolor="#EE9E5B" width="100%"> <tr><td bgcolor="#FFFF94" valign="top" width="100%"> <table border="0" cellpadding="0" cellspacing="1" width="100%" bgcolor="#202020"> <tr><td valign="top" bgcolor="#333333" width="100%"> <table border="0" cellpadding="0" cellspacing="1" width="100%" height="20" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>bg-tab-menu.gif" class="blockTitle"> <a class="mma" href="<{$xoops_url}>"><{$xoops_sitename}></a> / <{$xoops_pagetitle}> </td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="2" bgcolor="#202020"> <tr><td background="<{$xoops_imageurl}>hr.gif"></td></tr></table> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"> <tr><td valign="top" class="blockContent" width="100%"><div id="content"><{$xoops_contents}></div></td></tr></table> </td></tr></table></td></tr></table> <br> <!-- End content --> </td> Any help greatly appreciated! Thanks! |