| Re: Theme Design Q & A - Ask your questions here |
| by pod on 2005/5/19 7:36:11 Quote: not sure what this code is, where it goes or what file to ammend... It would go in yourxoopsdirectory/header.php I personally just overwrote the file, didn't need to edit anything but my theme.html Quote: can i change the logo with my own logo..?? i cant change it becouse i dont know how to change it. is it possible to change the logo from the themes?? can anyone answer my question?? Yes, yes & yes. You can change the logo by editing the theme.html file in whatever theme you are using, or by overwriting the logo image file in your /images/ directory. |
| Re: Theme Design Q & A - Ask your questions here |
| by cicin on 2005/5/19 6:03:22 can i change the logo with my own logo..??i cant change it becouse i dont know how to change it.is it possible to change the logo from the themes??can anyone answer my question?? |
| Re: Theme Design Q & A - Ask your questions here |
| by jamboree on 2005/5/15 20:09:07 I've tried to use the code found on happy linux: http://linux2.ohwada.net/modules/xfsection/article.php?articleid=15 however i have trouble interpreting the following code instruction.... (2) Center Block was assigned up and down. xoops_ccblocks_up and xoops_ccblocks_down are asigned for theme templates. conventional xoops_ccblocks is asigned too. If weight value is ten or less, block is assigned to xoops_ccblocks_up. If it is more than ten, block is assigned to xoops_ccblocks_down. [code] if ( $block_arr[$i]->getVar('weight') < 10) { $xoopsTpl->append('xoops_ccblocks_up', array('title' => $block_arr[$i]->getVar('title'), 'content' => $bcontent)); } else { $xoopsTpl->append('xoops_ccblocks_down', array('title' => $block_arr[$i]->getVar('title'), 'content' => $bcontent)); } [code] not sure what this code is, where it goes or what file to ammend..... any help would be really appreciated many thanks |
| Re: Theme Design Q & A - Ask your questions here |
| by pod on 2005/5/11 8:53:00 xspider - Although I'm told it should work with all the blocks, I can't get an *if* statement to work with left blocks. For right blocks, the syntax would be something like: le="color: #000000"><?php <{if $xoops_showrblock == 1}> <!-- Start right blocks loop --> <{foreach item=block from=$xoops_rblocks}> <div class="blockTitle"><{$block.title}></div> <div class="blockContent"><{$block.content}></div> <{/foreach}> <!-- End right blocks loop --> <{else}> <!-- Start Alternative Content --> <img src="<{$xoops_imageurl}>/whatever.gif"> <!-- End Alternative Content --> <{/if}> jamboree, check out the header hack @ http://linux2.ohwada.net/ |
| Re: Theme Design Q & A - Ask your questions here |
| by Bassman on 2005/5/11 5:48:28 jamboree, I don't believe what you want is possible with the current version of Xoops, but it may be implemented in future versions. |