想改變logo範圍 的大小
- yhwcherry
-
Topic Author
- 訪客
-
- cmsrookie
-
- 訪客
-
2009-07-24 09:13 #14866
來自 cmsrookie
cmsrookie replied the topic: 想改變logo範圍 的大小
從佈景主題 HTML 編輯器可看到 logo 部分的程式碼 /templates/ja_purity/index.php
可看到
查一下 template.css<?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>
可看到
修改其中的 width, height 即可h1.logo a {
width: 208px;
display: block;
background: url(../images/logo.png) no-repeat;
height: 80px;
position: relative;
z-index: 100;
}
Please 登入 to join the conversation.