catching unique blocks with title
digging a bit deeper into the structure of theme and templatesystem you sure have found some individual ways to make xoops layouts do what you want and fit your needs. There were some discussions in the past to have different look of blocks. You want to have different styles on some blocks?
As an (one) example you can use:
<{if $block.title == “mainmenu”}>
<div class=”lnavigationtitle”><h3><{$block.title}></h3></div>
<div id=”navigation”><{$block.content}></div>
<{elseif $block.title == “usermenu”}>
<div class=”lusernavigationtitle”><h3><{$block.title}></h3></div>
<div id=”usernavigation”><{$block.content}></div>
<{else}>
<div class=”ltitle”><h3><{$block.title}></h3></div>
<div class=”lblockcontent”><{$block.content}></div>
<{/if}>
to catch block by title and assigning ID or different classes which you can use in your stylesheet.
Again, make your own exercises and play with xoops and smarty. There are always many ways to Rome. Using a templateengine like smarty there are some more.
Don’t forget to have fun with it!
