Toggle main menu visibility
新聞
下載
教材
影音
討論
其他選單
好站連結
行事曆
電子相簿
常見問題
萬用表單
即時留言簿
友站消息
社大學員
:::
登入
登入
帳號
密碼
登入
重整畫面
:::
所有書籍
「[1001]XOOPS網站門面專業設計」目錄
MarkDown
16. 樣板整合
1. 認識HTML、CSS
2. HTML基礎
3. 表格、圖片與版型
4. 連結、列表與組圖
4-1 上課範例
5. 認識HTML5
5-1 上課範例
6. 套用CSS
6-1 上課練習
7. CSS於區塊的應用
7-1 上課範例:index4.html
7-2 上課範例:style2.css
8. 表格、清單、超連結
8-1 上課範例:index4.html
8-2 上課範例:style2.css
9. CSS的位置控制
9-1 上課範例:index4.html
9-2 上課範例:style2.css
10-1 上課範例:index.html
10-2 上課範例:style.css
11. XOOPS佈景
11-1 需改造網站
12. 將網頁轉為樣板
12-1 上課範例:theme.html
12-2 上課範例:style.css
13. 整修、測試佈景
13-1 block.html
13-2 block_center.html
13-3 style.css
14. 線上修改樣板
14-1 上課範例:theme.html
14-2 上課範例:block_right.html
14-3 上課範例:style.css
14-4 上課範例:block.html
15. 實用CSS技巧
16. 樣板整合
16-1 上課範例:theme.html
16-2 上課範例:style.css
16-3 上課範例:block_right.html
16-4 上課範例:loginhtml
17. XOOPS佈景速成
18. 認識CSS Sprites
18-1 範例一:左半的圖
18-2 範例二:右半邊的圖
18-3 範例三:滑鼠移過切換(IE6相容版)
18-4 範例四:框出裡面的選項
18-5 範例五:完整版
16-2 上課範例:style.css
\[1001\]XOOPS網站門面專業設計 ===================== <!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" xml:lang="<{$xoops\_langcode}>" lang="<{$xoops\_langcode}>"> <head> <!-- Assign Theme name --> <{assign var=theme\_name value=$xoTheme->folderName}> <!-- Title and meta --> <meta http-equiv="content-language" content="<{$xoops\_langcode}>" /> <meta http-equiv="content-type" content="text/html; charset=<{$xoops\_charset}>" /> <title><{$xoops\_sitename}> <{if $xoops\_pagetitle !=''}><{$xoops\_pagetitle}> - <{/if}></title> <meta name="robots" content="<{$xoops\_meta\_robots}>" /> <meta name="keywords" content="<{$xoops\_meta\_keywords}>" /> <meta name="description" content="<{$xoops\_meta\_description}>" /> <meta name="rating" content="<{$xoops\_meta\_rating}>" /> <meta name="author" content="<{$xoops\_meta\_author}>" /> <meta name="copyright" content="<{$xoops\_meta\_copyright}>" /> <meta name="generator" content="XOOPS" /> <!-- Rss --> <link rel="alternate" type="application/rss+xml" title="" href="<{xoAppUrl backend.php}>" /> <!-- Favicon --> <link rel="shortcut icon" type="image/ico" href="<{xoImgUrl icons/favicon.ico}>" /> <link rel="icon" type="image/png" href="<{xoImgUrl icons/favicon.png}>" /> <!-- Sheet Css --> <link rel="stylesheet" type="text/css" media="all" title="Style sheet" href="<{xoAppUrl xoops.css}>" /> <link rel="stylesheet" type="text/css" media="all" title="Style sheet" href="<{xoImgUrl style.css}>" /> <link rel="stylesheet" type="text/css" media="all" title="Style sheet" href="<{xoImgUrl xoops.css}>" /> <!--\[if lte IE 8\]> <link rel="stylesheet" href="<{xoImgUrl styleIE8.css}>" type="text/css" /> <!\[endif\]--> <!-- customized header contents --> <{$xoops\_module\_header}> </head> <body id="<{$xoops\_dirname}>" class="<{$xoops\_langcode}>"> <div style="width:980px;margin:0px auto;position:relative;"> <{if $xoops\_isuser}> <div style="position:absolute;top:145px;left:100px"> <{includeq file="$theme\_name/user\_menu.html"}> </div> <{else}> <div style="position:absolute;top:145px;left:80px"> <{includeq file="$theme\_name/login.html"}> </div> <{/if}> <table width="980" border="0" cellspacing="0" cellpadding="0" id="page"> <tr> <td width="220" valign="top"><p> <!--左區塊區--> <{foreach item=block from=$xoBlocks.canvas\_left}> <{includeq file="$theme\_name/block\_right.html"}> <{/foreach}> <!--右區塊區--> <{foreach item=block from=$xoBlocks.canvas\_right}> <{includeq file="$theme\_name/block\_right.html"}> <{/foreach}> </p></td> <td width="760" valign="top"> <table width="750" border="0" cellpadding="0" cellspacing="0" id="page2"> <tr> <td valign="top"> <!-- 上中左區塊 --> <{foreach item=block from=$xoBlocks.page\_topleft}> <{includeq file="$theme\_name/block\_center.html"}> <{/foreach}> </td> <td valign="top"> <!-- 上中右區塊 --> <{foreach item=block from=$xoBlocks.page\_topright}> <{includeq file="$theme\_name/block\_center.html"}> <{/foreach}> </td> </tr> <tr> <td colspan="2" valign="top"> <!-- 上中區塊 --> <{foreach item=block from=$xoBlocks.page\_topcenter}> <{includeq file="$theme\_name/block\_center.html"}> <{/foreach}> </td> </tr> <tr> <td colspan="2" valign="top"> <!--主內容區--> <{$xoops\_contents}> </td> </tr> <tr> <td valign="top"> <!-- 下中左區塊 --> <{foreach item=block from=$xoBlocks.page\_bottomleft}> <{include file="$theme\_name/block\_center.html"}> <{/foreach}> </td> <td valign="top"> <!-- 下中右區塊 --> <{foreach item=block from=$xoBlocks.page\_bottomright}> <{include file="$theme\_name/block\_center.html"}> <{/foreach}> </td> </tr> <tr> <td colspan="2" valign="top"> <!-- 下中區塊 --> <{if $xoBlocks.page\_bottomcenter}> <{foreach item=block from=$xoBlocks.page\_bottomcenter}> <{include file="$theme\_name/block\_center.html"}> <{/foreach}> <{/if}> </td> </tr> </table></td> </tr> <tr> <td colspan="2"><span class="style1"> <!--頁尾區--> <{$xoops\_footer}> </span></td> </tr> </table> </div> </body> </html>
:::
搜尋
search
進階搜尋
QR Code 區塊
快速登入
所有討論區
「PHP全端開發」線上課程討論區
XOOPS使用討論區
一般研習學員
社大學員專用
路過哈啦區
XOOPS佈景設計
XOOPS模組開發
Tad書籍區
即時留言簿
書籍目錄
展開
|
闔起
線上使用者
105
人線上 (
29
人在瀏覽
線上書籍
)
會員: 0
訪客: 105
更多…