Showing posts with label Blogger喔耶. Show all posts
Showing posts with label Blogger喔耶. Show all posts

2009/02/09

哇~~blogger好威

blogger
今天審視了一下我的草稿文章,除了有篇怪怪的#105新發現不知該拿它怎麼辦好之外,就是import功能了,這到底是幾時出現的功能,這代表也可以export吧!!!

太完美了,趕緊備份一下我的資料,擇日玩玩import.....




[Full Post]

2008/02/14

Tictac 的header 破圖修正

是否 您與您身邊的朋友,也受到這種困擾??
用IE這個爛Browser看blogger,Header裡的圖會殘缺不全

不管怎樣 我有遇到就是了....-_-


blog-edit
第一步,去編輯你blogger的HTML ,把 [Expand Widget Templates]打勾

blog-header-old
第二步,找到header-inner 的block,把紅色框框的code砍掉

blog-header-new
第三步,存檔得永生


(WTH....情人節我居然在研究html code....)


[Full Post]

下底線

是否 在夜深人靜的時候,你對中文字加下底線的違和感,感到不恥與無奈


under

變成
些三二但


直接進Blogger修正Template的HTML

加上
U {
text-decoration: none;
line-height:22px; padding:4px 2px 2px 0px;
letter-spacing:2px;
background:url(http://farm3.static.flickr.com/2222/2264888696_870d160fa5_o.gif) repeat-x bottom
}


存檔


以後只要
內文加上U tag
ex:
<u>些三二但</u>

就可以了



P.S.
underline_hl6
這是我東施效顰的圖 link是
http://farm3.static.flickr.com/2222/2264888696_870d160fa5_o.gif

underline_hl
網路最多人用的原圖 link是
http://farm3.static.flickr.com/2188/2264816342_b5a1c0259d_o.gif



(WTH....情人節我居然在研究css style....)


[Full Post]

2007/09/01

別人的JSON服務

Recent Comment





[Full Post]

2006/10/09

如何顯示[最新回應]

以下是圖文並茂的流程設定

recentcomment0
1.設定comment的feed格式為-Short (免得過長影響首頁排版)

recentcomment1
2.進入Template

recentcomment2
3.新增Page Element

recentcomment3
4.輸入自己blog的Feed URL : 此例是
http://garyyin.blogspot.com/feeds/comments/summary
P.S.若之前的格式選Full的話 就改為
http://garyyin.blogspot.com/feeds/comments/full

recentcomment4
5.取個名字,一般的菜場名是 Recent Comments
6.Done


[Full Post]

讓Beta版的首頁只顯示部份內文

這是免include css,js的精簡版

1.修改Template的 Edit HTML
2.找出
<p><data:post.body/></p>

3.換成
<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
<p><data:post.body/>
<br/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><br/>[Full Post]</a>
<b:else/>
<data:post.title/>
</b:if>
</p>
</b:if>


4.以後post new blog只要加上,就可以隱藏其span內的文字
<span class="fullpost"></span>

以上源自[水瓶子]

[Full Post]

讓Nav SearchBar消失

在Template裡 選Edit HTML
找出Style的section,加上下列 style即可

/*---------Say Goodbye to Nav Bar---------*/
.Navbar {
visibility:hidden;
display: none;
}
/*---------Say Goodbye to Nav Bar---------*/

[Full Post]