I would like to put the categories tab menu at the bottom of the screen. I'm trying desperately to learn CSS as fast as I can but it's hard with no experience. I would appreciate a little assistance please.
That's not exactly what I was looking for but thanks for trying. That looks like it makes images popup when you rollover a category item. I'm looking to take the whole categories tab menu and move it to just above the footer bar. I don't like it right at the top but I don't want to remove it as it will help the robots link through my site.
Try copying the cat tabs call from tpl_header.php to tpl_main_page.php.
[php]
<!--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-->
[/php]
Paste it in where you want it, probably just above [php]
<?php
/**
* prepares and displays footer output
*
*/[/php]
I did something like this with the logo display and it worked fine.
You will need to comment out the code in tpl_header.php.