RichardKletty:
Yes I just want to get rid of the category links on the middle top of the page and actually if I can get rid of them on every page that would be great. I dont even nee them on the home page since I have the links displayed below the top category list.
Never mind, I got it... Its in the admin.
If you want them to show only on the main page then open
includes/templates/YOUR_TEMPLATE/common/tpl_header.php
find the following section of code
<!--bof-optional categories tabs navigation display-->
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<!--eof-optional categories tabs navigation display-->
and change it as follows:
if ($this_is_home_page) {
<!--bof-optional categories tabs navigation display-->
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<!--eof-optional categories tabs navigation display-->
}
Save the file and upload to your server