Demo

討論

保持飢餓,保持愚笨 (Stay hungry, stay foolish)。 史蒂夫·賈伯斯

公告

本網站已取消討論區的討論方式,如果您有問題請至LINE群行動條碼圖片網址,或Facebook社團

想改變logo範圍 的大小

  • yhwcherry
  • yhwcherry 的個人頭像 Topic Author
  • 訪客
  • 訪客
2009-07-23 23:27 #14864 來自 yhwcherry
yhwcherry created the topic: 想改變logo範圍 的大小
:grin: 請問一下,我更改了logo ,可是只能照它原來的範圍,我想加大它,不知道如何去改呢?佈景是JA_Purity?....謝

Please 登入 to join the conversation.

  • cmsrookie
  • cmsrookie 的個人頭像
  • 訪客
  • 訪客
2009-07-24 09:13 #14866 來自 cmsrookie
cmsrookie replied the topic: 想改變logo範圍 的大小
從佈景主題 HTML 編輯器可看到 logo 部分的程式碼 /templates/ja_purity/index.php

<?php
$siteName = $tmpTools->sitename();
if ($tmpTools->getParam('logoType')=='image'): ?>
<h1 class="logo">
[url=index.php" title="<?php echo $siteName; ?>]<span><?php echo $siteName; ?></span>[/url]
</h1>

查一下 template.css
可看到

h1.logo a {
width: 208px;
display: block;
background: url(../images/logo.png) no-repeat;
height: 80px;
position: relative;
z-index: 100;
}

修改其中的 width, height 即可

Please 登入 to join the conversation.