Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 找人修改SS的头部,只改头部。

[复制链接]
leizhengyu 发表于 2008-1-26 15:23:04 | 显示全部楼层 |阅读模式
只改问部,换成另外一种风格,我有代码。我现在是用softsea风格。   

以下是bbs_header.html的代码:
<?exit?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=$_SCONFIG[charset]" />
<title>$title  $_SCONFIG[seotitle]- Powered by SupeSite</title>
<meta name="keywords" content="$keywords $_SCONFIG[seokeywords]" />
<meta name="description" content="$description $_SCONFIG[seodescription]" />
<link rel="stylesheet" type="text/css" href="{S_URL}/templates/$_SCONFIG[template]/css/style.css" />
$_SCONFIG[seohead]
<script type="text/javascript">
var siteUrl = "{S_URL}";
</script>
<script src="{S_URL}/include/js/ajax.js" type="text/javascript" language="javascript"></script>
<script src="{S_URL}/include/js/common.js" type="text/javascript" language="javascript"></script>
</head>

<body>
<div id="wrap">
        <div id="header">
                <table border="0" cellpadding="0" cellspacing="0" id="headertab">
                        <tr>
                                <td id="logo">
                                        <a href="{S_URL}/"><img src="{S_URL}/templates/$_SCONFIG[template]/images/logo.jpg" alt="$_SCONFIG[sitename]" style="border:none;" /></a>
                                </td>
                                <td id="topmenu">
                                        <ul>
                                                <!--{loop $channels['menus'] $key $value}-->
                                                <li><a href="$value[url]" class="$key">$value[name]</a></li>
                                                <!--{/loop}-->
                                        </ul>
                                </td>
                        </tr>
                </table>
        </div>
       
        <div id="menu">
                <!--{block name="bbsforum" parameter="type/forum/allowblog/1/order/displayorder/limit/0,100/cachetime/14400/cachename/forumarr/tpl/data"}-->
                <ul>
                        <!--{loop $_SBLOCK['forumarr'] $value}-->
                        <li><a href="$value[url]">$value[name]</a></li>
                        <!--{/loop}-->
                </ul>
        </div>


我要改成以下这种的头部,代码不知道怎么改
<?exit?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=$_SCONFIG[charset]" />
<title>$title  $_SCONFIG[seotitle]</title>
<meta name="keywords" content="$keywords $_SCONFIG[seokeywords]" />
<meta name="description" content="$description $_SCONFIG[seodescription]" />
<link rel="stylesheet" type="text/css" href="{S_URL}/templates/$_SCONFIG[template]/css/style.css" />
$_SCONFIG[seohead]
<script type="text/javascript">
var siteUrl = "{S_URL}";
</script>
<script src="{S_URL}/include/js/ajax.js" type="text/javascript" language="javascript"></script>
<script src="{S_URL}/include/js/common.js" type="text/javascript" language="javascript"></script>
</head>

<body>
<div id="wrap">
        <!-- Header页首 -->
        <div id="header">
                <div id="a_topmenu">
                        <span>
                        <a href="{S_URL}/">首页</a>&nbsp;&nbsp;|&nbsp;&nbsp;
                        <a href="#action/bbs#">论坛</a>&nbsp;&nbsp;|&nbsp;&nbsp;
                        <a href="{S_URL}/batch.search.php">搜索</a>
                        </span>
                <div id="userpanel"><script src="{S_URL}/a03_batch.panel.php" type="text/javascript" language="javascript"></script></div>
                </div>

                <div id="pagetitle">
                        <!--{if empty($fid) && empty($tid)}-->
                        <!--{if !empty($_SCONFIG['indexadheader'])}-->       
                        <div class="banner468">$_SCONFIG[indexadheader]</div>
                        <!--{/if}-->
                        <!--{elseif !empty($tid)}-->
                        <!--{if !empty($_SCONFIG['viewadheader'])}-->               
                        <div class="banner468">$_SCONFIG[viewadheader]</div>
                        <!--{/if}-->
                        <!--{else}-->
                        <!--{if !empty($_SCONFIG['listadheader'])}-->               
                        <div class="banner468">$_SCONFIG[listadheader]</div>
                        <!--{/if}-->
                        <!--{/if}-->

                        <div>
                        <a href="{S_URL}/"><img id="logo" src="{S_URL}/templates/$_SCONFIG[template]/images/logo.gif" alt="站点Logo" /></a>
                        </div>
                </div>
                <div id="topmenu">
                        <div id="bbsmenu">
                                <!--{loop $channels['menus'] $key $value}-->
                                <a href="$value[url]" class="$key">$value[name]</a>
                                <!--{/loop}-->
                        </div>
                </div>
               
                <!--论坛分类导航菜单-->
                <!--{block name="bbsforum" parameter="type/forum/allowblog/1/order/displayorder/limit/0,100/cachetime/14400/cachename/forumarr/tpl/data"}-->
                <div id="menu">
                        <ul>
                                <!--{loop $_SBLOCK['forumarr'] $value}-->
                                <li><a href="$value[url]">$value[name]</a></li>
                                <!--{/loop}-->
                        </ul>
                </div>
                <div id="navigation">
                        <p>您的位置:
                                <a href="{S_URL}/">$_SCONFIG[sitename]</a>
                                <!--{loop $guidearr $value}-->
                                &gt;&gt; <a href="$value[url]">$value[name]</a>
                                <!--{/loop}-->
                        </p>
                </div>
        </div>
        <!-- /Header页首 -->
 楼主| leizhengyu 发表于 2008-1-26 16:22:14 | 显示全部楼层
:( :( :( :( 无语+无语
回复

使用道具 举报

xunyunet 发表于 2008-1-26 16:35:45 | 显示全部楼层
                               !    也不会!
回复

使用道具 举报

 楼主| leizhengyu 发表于 2008-1-26 16:54:31 | 显示全部楼层
<!--论坛分类导航菜单-->
                <!--{block name="bbsforum" parameter="type/forum/allowblog/1/order/displayorder/limit/0,100/cachetime/14400/cachename/forumarr/tpl/data"}-->
                <div id="menu">
                        <ul>
                                <!--{loop $_SBLOCK['forumarr'] $value}-->
                                <li><a href="$value[url]">$value[name]</a></li>
                                <!--{/loop}-->
                        </ul>
                </div>
                <div id="navigation">
                        <p>您的位置:
                                <a href="{S_URL}/">$_SCONFIG[sitename]</a>
                                <!--{loop $guidearr $value}-->
                                &gt;&gt; <a href="$value[url]">$value[name]</a>
                                <!--{/loop}-->
                        </p>
                </div>
        </div>
        <!-- /Header页首 -->
回复

使用道具 举报

dfgsd 发表于 2008-1-26 22:48:00 | 显示全部楼层
不是很会,帮不了你
回复

使用道具 举报

cn73064 发表于 2008-1-27 16:31:06 | 显示全部楼层
你的头部要改什么样,发个演示站
回复

使用道具 举报

dzbz 发表于 2008-1-27 17:09:28 | 显示全部楼层
看看: http://www.wtoqc.cn

代码好象是
<div id="wrap">
<div id="atopmenu">
<span>
<a href="http://www.wtoqc.cn/">首页</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="http://www.wtoqc.cn/html/news.html">资讯</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="http://www.wtoqc.cn/html/blog.html">日志</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="http://www.wtoqc.cn/html/goods.html">商品</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="http://www.wtoqc.cn/html/file.html">文件</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="http://www.wtoqc.cn/html/link.html">书签</a>&nbsp;&nbsp;|&nbsp;&nbsp;
<a href="http://www.wtoqc.cn/html/bbs.html">论坛</a>&nbsp;&nbsp;&nbsp;&nbsp;
</span>&nbsp;&nbsp;<a href="http://www.wtoqc.cn/">外贸验货员网</a>
</div>
<div id="apagetitle">
<div class="banner468"><div onclick="adclick(1);"><a href="http://www.wtoqc.cn"> <img src="http://www.wtoqc.cn/images/2008.gif"></a></div><!--dzbz--></div>
<div><a href="http://www.wtoqc.cn/"><img src="http://www.wtoqc.cn/templates/softsea/images/logo.jpg" alt="外贸验货员网" /></a></div>
</div>

<div id="menu" class="empty"> </div>

        <div class="content topcontent">
                <div class="mainarea" style="padding-top: 10px;">
                        <!--最新资讯图片幻灯片 开始-->
回复

使用道具 举报

 楼主| leizhengyu 发表于 2008-1-28 19:21:48 | 显示全部楼层
不是你这种的啊。。我的头部代码就在上面。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-1-12 00:49 , Processed in 0.026491 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表