Joomla tab module problem

BradT81

New Member
I created a custom Joomla template the development site is
http://walnutcreekfe.com/new/

I installed Gavick Tabsmanager and enabled it in the middle module position. Youll see Type II diabetes, Hypoythyroidism, etc. That is the module. No tabs or anything just text. Im not sure why this is happening. I have built many Joomla templates and this has never happened. Is it something to do with Mootools? I know its the template because its fine with the default Joomla template. And I know its not the module because all tab modules do the same. Please help if you can


thanks
 

websonalized

New Member
Yes, I see problems with your tabs.

I took snapshots of the tabs in four browsers, and they look like this:

chrome:
13zpqn7.png


firefox:
2rz6m21.png


internet explorer:
10youhw.png


safari:
23mkjrn.png


As you can see, the tabs do not display properly in chrome, ie, and safari.

You need to change the following code:

file style1.css linie 47
from this code:

ul.gk_tab_ul-style1 li {
float: left;
cursor: pointer;
margin: 0 1px -1px 0;
border: 1px solid #EBEBEB;
border-bottom: none;
position: relative;
padding: 1px;
padding-bottom: 0px;
}

to THIS CODE

ul.gk_tab_ul-style1 li {
float: left;
cursor: pointer;
margin: 0 1px -1px -1px;
border: 1px solid #EBEBEB;
border-bottom: none;
position: relative;
padding: 1px;
padding-bottom: 0px;
}
 
Top