About:All sample pages where created with Dreamweaver MX using simple SSI includes to import various blocks, etc, so one can get a overall look of how things should appear. All individual theme functions where placed in seperate files, and port the name of the functions they should be placed in in theme.php Of course you can also add pure php, but remember that when working with php, you need to be carefull with double " and single quotes ' :: Read more here. For the sake of readability & less errors, be sure to work in plain html mode as much as possible, and simply inject your variables with <?php echo $variable;?> whenever needed. Anytime you want to specify the url to your theme folder, <?php echo SYS_ROOT_URL . "/themes/" . SYS_THEME;?> Like this you can 1st work on the html version & see all images inside it, & when finished just add this line before the image folder url. note: neither of the above include the trailing slash -> / <!-- HTML CODE --> can safely be removed from theme.php, it's just in there for readability. You can define custom text in your themes /language/(mylang)/ folder. This is loaded with each theme. Custom text you define, be sure to prefix it with _TH_ so you know it's theme specific. LINKS: Cheers, n happy themeing :) |