I am using the colored tabs feature in the custom css file. It works fine in Google, IE7, Safari, but the tabs show up as gray in IE8, chrome and opera. In opera the tabs are also square (I have the rounded corners turned on). Any help would be appreciated.
Thanks.
Patty

Comments

Deepika.chavan’s picture

Hi,
- Try 'jquery.corner.js' which is HERE. Download the file in 'zeropoint/js/.' directory.
- Create one custom js file say "rounded_corner.js".
- Add following code in "rounded_corner.js" :

$(document).ready(function() {
	  $("#navlist.links li a").corner("tl 5px"); 
	  $("#navlist.links li a").corner("tr 5px"); 
});

- Add following code in template.php file :

 drupal_add_js(drupal_get_path('theme', 'zeropoint') . '/js/rounded_corner.js');
 drupal_add_js(drupal_get_path('theme', 'zeropoint') . '/js/jquery.corner.js');

Please clear cached data.

HTH !!

Rgrds,
Deepika.

Florian’s picture

Issue summary: View changes
Status: Active » Closed (fixed)

This was fixed in newer versions.