| Re: Customizing the look of individuals blocks |
| by tzvook on 2012/1/17 13:13:40 Came back after 3 years , to upgrade to 2.5.4 and use my own solution in a UTF site. Nice to be back
|
| Re: Customizing the look of individuals blocks |
| by trabis on 2008/12/5 22:37:58 Interesting technique! Thanks for sharing
|
| Re: Customizing the look of individuals blocks |
| by tzvook on 2008/12/5 16:56:36 I'm back ![]() now ..... in your theme.html you can use it like this: lets say we deal with the 'center-center block' we can use it in our theme like this: le="color: #000000"><?php <div style="padding: 5px;"> <{if $block.title|mb_truncate:11:"":'UTF-8' == "green-block"}> <{elseif $block.title|mb_truncate:9:"":'UTF-8' == "red-block"}> <div class="bl"><div class="br"><div class="tl"><div class="tr"> <{elseif $block.title != ""}> <div class="bl"><div class="br"><div class="ttl"><div class="ttr"> <div style="font-size: 16px; color:#4b5676; font-weight: bold; vertical-align: middle; line-height: 34px; height:36px; background-image : url(<{xoImgUrl pix/divHeader.gif}>);"><img align="right" src="<{xoImgUrl pix/arrHeader.gif}>" width="13" height="35" alt="" hspace="12" border="0"><{$block.title}></div> <{/if}> <div class="blockContent"><{$block.content}></div> </div></div></div></div> <div class="clear"> </div> </div> and it works like this mb_truncate:9 (the number 9 here tels smarty to see if the 9 first chars of your block title equals to "red-block" and if it does - in the sample above it won't write the title, and will start the block with: le="color: #000000"><?php <div class="bl"><div class="br"><div class="tl"><div class="tr"> beginning your block title with "green-block" will simply give nothing (to block-title and no html) and so on ... |
| Customizing the look of individuals blocks |
| by tzvook on 2008/12/5 16:21:01 A few of you probably knows my way of customizing the look of individuals blocks by giving them a custom title (posted here: https://xoops.org/modules/newbb/viewtopic.php?post_id=265122#forumpost265122 ) With this method I can name (title) blocks like green-block + whatever title needed red-block + whatever title needed blue-block + whatever title needed And those 3 blocks will look completely different (just by giving them a few characters in the begining of their title) ... via CSS and/or HTML each of those block can look different (so you can make a few "reusable blocks types" and use them whenever needed in your site blocks ) Well - this method won't work with UTF-8 (default in 2.3.x) since the smarty "truncate" is not working with UTF-8 I use this method a lot to give a few of my front-page blocks a unique look ( breaking the XOOPS look a bit ) There is a way to do it in UTF-8 too ( adding a smarty plugin to /xoops/class/smarty/plugins/ ) make a new file ( /class/smarty/plugins/modifier.mb_truncate.php ) with this code: ..... I'll post the rest in here in an hour since I've been called in the middle of my post
|