4
Hi,
I'm not good with CSS too, not to mention the way it uses smarty. Will have to study it and learn
Thanks for pointing to it! About the Japanese I see only squares on my screen...
However here is something you can try:
edit file theme.html like this (add the red line):
Quote:
<{include file="$xoops_rootpath/themes/$xoops_theme/blockcenter.html"}>
<{include file="$xoops_rootpath/themes/$xoops_theme/blockbottom.html"}>
and create a new file in theme folder called "blockbottom.html" with this code:
<{if $xoBlocks.page_bottomleft or $xoBlocks.page_bottomright or $xoBlocks.page_bottomcenter}>
<{if $xoBlocks.page_bottomcenter}>
<div class="centerCcolumn"><div>
<{foreach from=$xoBlocks.page_bottomcenter item=block}>
<div class="blockTitle1"><{$block.title}>div>
<div class="blockContent"><{$block.content}>div>
<{/foreach}>
div>div>
<{/if}>
<{if $xoBlocks.page_bottomleft or $xoBlocks.page_bottomright}>
<div class="centerLcolumn"><div>
<{foreach from=$xoBlocks.page_bottomleft item=block}>
<div class="blockTitle2"><{$block.title}>div>
<div class="blockContent"><{$block.content}>div>
<{/foreach}>
div>div>
<div class="centerRcolumn"><div>
<{foreach from=$xoBlocks.page_bottomright item=block}>
<div class="blockTitle3"><{$block.title}>div>
<div class="blockContent"><{$block.content}>div>
<{/foreach}>
div>div>
<{/if}>
<{/if}>
<div id="page_top"><a href="#header"><span class="hidden">Go Page Topspan>a>div>
This is not the best fix, but may work ok