This module requires litte bit advanced users. But give a try. VERY IMPORTANT on DISABLING THE MODULE -------------------------------------- Be sure that you remove all the usage of the build_tabview function from your site. If you disable the module while you have a block added with tab_view in your front page this will cause a problem. If you have a block added in front page you have to remove this before you disable the yui_tabview. How to enable and use the module -------------------------------- - Extract the tabview to your module directory - Enable it from Site Building->Modules (admin/build/modules) - Visit the sample page at tabview/sample (http://localhost/?q=tabview/sample or http://localhost/tabview/sample) How to use this module ---------------------- This version has two way to use tab views. 1) - Goto Site Building->Blocks admin/build/block - Add a new block - Place the following code to the "Block body:" and change the body as your data. (YUI_TAB) (HEADER)Tab1(/HEADER) Content for tab 1 (HEADER)Tab2(/HEADER) Content for tab 2 (HEADER)Tab 3(/HEADER) Content for tab 3 (/YUI_TAB) - Pleace your block on your site. - Also do not forget to enable the filter for the Input Format that you are using in your blocks Input Filter. Be sure that go to /?q=admin/settings/filters and edit your input format that you are using in your block and check the checkbox for "Yui Tabs" item. 2) To pleace a block on your site with php code just do the followings - Goto Site Building->Blocks admin/build/block - Add a new block - Place the following code to the "Block body:" and change the 'Tab One Label' and 'Tab One Content' with your data. You can add or remove $nodes[] lines as you require. 'Tab One Label', 'content' => 'Tab One Content'); $nodes[] = (object)array('nav' => 'Tab Two Label', 'content' => 'Tab Two Content'); $nodes[] = (object)array('nav' => 'Tab Three Label', 'content' => 'Tab Three Content'); $output = build_tabview("test",$nodes); return $output; ?> - Pleace your block on your site.