Category tabs solved. Finally succes
Original stylesheet.css:
Code:
/*#navCatTabsWrapper, #siteinfoIP {
display: none;
}
#navCatTabsWrapper {
margin: 0;
background-color: #E5EDF5;
font-weight: bold;
color: #ffffff;
height: 1%;
width: 100%;
}
#navCatTabs ul {
margin: 0;
padding: 0.5em 0em;
list-style-type: none;
text-align: center;
line-height: 1.5em;
}
#navCatTabs ul li {
display: inline;
white-space: nowrap;
}
#navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #000;
}
#navCatTabs ul li a:hover {
color: #000;
}*/
Replaced with:
Code:
/*#navCatTabsWrapper*/
#navCatTabsWrapper {
margin: 0;
background-color: #E5EDF5;
font-weight: bold;
color: #ffffff;
height: 1%;
width: 100%;
}
#navCatTabs ul {
margin: 0;
padding: 0.5em 0em;
list-style-type: none;
text-align: center;
line-height: 1.5em;
}
#navCatTabs ul li {
display: inline;
white-space: nowrap;
}
#navCatTabs ul li a {
text-decoration: none;
padding: 0em 0.5em;
margin: 0;
color: #000;
}
#navCatTabs ul li a:hover {
color: #000;
}
In includes/templates/glacial_age/common/tpl_header.php find the line:
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-->
replace with:
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-->