Forums / Templates, Stylesheets, Page Layout / Moveing Categories tab menu

Moveing Categories tab menu

Locked
Results 1 to 6 of 6
This thread is locked. New replies are disabled.
04 Apr 2007, 01:59
#1
gretzlertech avatar

gretzlertech

New Zenner

Join Date:
Mar 2007
Posts:
36
Plugin Contributions:
0

Moveing Categories tab menu

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.

Thanks.
04 Apr 2007, 02:31
#3
gretzlertech avatar

gretzlertech

New Zenner

Join Date:
Mar 2007
Posts:
36
Plugin Contributions:
0

Re: Moveing Categories tab menu

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.
04 Apr 2007, 18:41
#4
gretzlertech avatar

gretzlertech

New Zenner

Join Date:
Mar 2007
Posts:
36
Plugin Contributions:
0

Re: Moveing Categories tab menu

Still need an answer please.
04 Apr 2007, 19:51
#5
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Posts:
21,876
Plugin Contributions:
6

Re: Moveing Categories tab menu

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.
05 Apr 2007, 04:41
#6
gretzlertech avatar

gretzlertech

New Zenner

Join Date:
Mar 2007
Posts:
36
Plugin Contributions:
0

Re: Moveing Categories tab menu

That was absolutely the correct answer! Thank you very much:D