Hi, apologies if this is a pain but wondered if your mod will support 'http-equiv' tags? With the release of IE9 it's become important to include the '' tag within Drupal's header in order to render CSS border-radius properties.

I've looked on here & within your mod but couldn't figure a way of achieving 'http-equiv' as believe default property of that field is 'name'.

Thanks.

Comments

valthebald’s picture

Currently metatags_quick does not support http-equiv meta tags.
If I get your point, you want to put the same http-equiv tags to all pages (not separate value per page), so you can just add them to html.tpl.php

deeve’s picture

Status: Fixed » Active

I tried placing in html.tpl.php but nothing showed, so looked into this further & found a 'drupal_add_html_head()' method solution for my Zen sub theme's template.php [sites/all/zen/templates.php] here which worked for me: http://sanjoy.jhenaidah.net/how-to-add-meta-description-keywords-drupal7

function excellent_page_alter($page) {
   $meta_description = array(
            '#type' => 'html_tag',
            '#tag' => 'meta',
            '#attributes' => array(
                'http-equiv' => 'X-UA-Compatible',
                'content' =>  'IE=9'
            )
   );
drupal_add_html_head( $meta_description, 'meta_description' );
}

Cheers!

valthebald’s picture

Status: Active » Fixed

yeah, good point!

Automatically closed -- issue fixed for 2 weeks with no activity.