Quote:
Originally Posted by JVCode
Been trying to update the colour of the letters of my tabs to white, but it's not having any of it? I know how to edit the colours and what not, but it's just not updating the colour of the font... any ideas?
|
Everything that controls the Font Colors is in the CSS. Don't forget when editing and reuploading the CSS file to do a Hard Refresh to reload CSS (in case its cached)..
Quote:
Originally Posted by MAD--DOG
on IE there is a spacing
How can i take that out??
|
Try removing the code below (in
RED) from the FORUMHOME template...
Code:
<!-- main -->
<!-- Tabbed Forum Home -->
<div id="ajaxTFH" class="TFHmenu2">
<ul>
<li class="selected"><a href="tabforumhome.php?tabcat[]=1" rel="ajaxTFHcontentarea">TAB 1 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2" rel="ajaxTFHcontentarea">TAB 2 NAME</a></li>
<li><a href="tabforumhome.php?tabcat[]=1&tabcat[]=2&tabcat[]=3" rel="ajaxTFHcontentarea">TAB 3 NAME</a></li>
</ul>
</div>
<br style="clear: left" />
<div class="TFHmenu2line"></div>
<div id="ajaxTFHcontentarea" style="border:0px solid gray; width:100%; height: 100%; background-color: white; padding: 0px"></div>
<script type="text/javascript">
var mytabs=new ddajaxtabs("ajaxTFH", "ajaxTFHcontentarea")
mytabs.setpersist(true)
mytabs.setselectedClassTarget("link")
mytabs.init()
</script>
<!-- /Tabbed Forum Home -->
<!-- /main -->