小弟用的版面是預設版型 Garland 小弟的需求是: 用自訂LOGO, 不要顯示網站名稱 於是我在預設版型 Garland 設定中,換了自訂LOGO, 網站名稱位置沒有打勾, 但是好像沒有顯示網站名稱, LOGO就沒有alt"", 如果網站名稱打勾, LOGO的ALT才會顯示網站名稱 請問如何才能達到我的需求: 用LOGO, 不要顯示網站名稱, 又要顯示LOGO 的 ALT 閒話家常討論6.x 發表回應前,請先登入或註冊 Re: 請問Logo的alt 嗯,的確有點怪,有數個 $variables 都是全域關掉 ..... 重新定義一下: <?php $site_title = filter_xss_admin(variable_get('site_name', 'Drupal')); // page.tpl.php // OR $vars['site_title'] = filter_xss_admin(variable_get('site_name', 'Drupal')); // template.tpl.php phptemplate_preprocess_page ?> ---notaBlueScreen | 一天一翻譯,好過吃蘋果 發表回應前,請先登入或註冊 Re: 請問Logo的alt 最簡單的方法, 就是修改css, 加上這一段 #wrapper #container #header h1 span { display:none; } 然後預設版型 Garland 設定中,用自訂LOGO, 網站名稱位置記得打勾, 這樣就可以顯示你的logo, 又有alt , sitename 又不會顯示。 發表回應前,請先登入或註冊
Re: 請問Logo的alt 嗯,的確有點怪,有數個 $variables 都是全域關掉 ..... 重新定義一下: <?php $site_title = filter_xss_admin(variable_get('site_name', 'Drupal')); // page.tpl.php // OR $vars['site_title'] = filter_xss_admin(variable_get('site_name', 'Drupal')); // template.tpl.php phptemplate_preprocess_page ?> ---notaBlueScreen | 一天一翻譯,好過吃蘋果 發表回應前,請先登入或註冊
Re: 請問Logo的alt 最簡單的方法, 就是修改css, 加上這一段 #wrapper #container #header h1 span { display:none; } 然後預設版型 Garland 設定中,用自訂LOGO, 網站名稱位置記得打勾, 這樣就可以顯示你的logo, 又有alt , sitename 又不會顯示。 發表回應前,請先登入或註冊
Re: 請問Logo的alt
嗯,的確有點怪,有數個 $variables 都是全域關掉 .....
重新定義一下:
<?php
$site_title = filter_xss_admin(variable_get('site_name', 'Drupal')); // page.tpl.php
// OR
$vars['site_title'] = filter_xss_admin(variable_get('site_name', 'Drupal')); // template.tpl.php phptemplate_preprocess_page
?>
---
notaBlueScreen | 一天一翻譯,好過吃蘋果
Re: 請問Logo的alt
最簡單的方法, 就是修改css, 加上這一段
#wrapper #container #header h1 span {
display:none;
}
然後預設版型 Garland 設定中,用自訂LOGO, 網站名稱位置記得打勾, 這樣就可以顯示你的logo, 又有alt , sitename 又不會顯示。