THIS IS A TUTORIAL 4 PPL WHO JUST
STARTED
USEING BLOG
by OMEGA
each step has a little picture (click on it 2 enlarge & another click if u still can't see)
pls. direct any1 who needs help 2 this post
(use Link: http://blog.bitcomet.com/post/14696/ )
URL example:
http://img98.imageshack.us/img98/3228/1794767ddpkst0712261549mz5.gif
(u can use URLs where u would like a custome image 2 be inserted in a backgrous)
COPYRIGHT: PLS ASK BEFORE COPYING INFO... THIS HAS TAKEN SEVRAL HOUSR TO WRITE... (OR GIVE CREDIS AND LINK)
Λ ) learn how 2 use CUSTOME STYLE(beta
4.0)
a) finding option (right upper corner of blog)
b)custom HEAD options:
1) chose color 4 u’re title (my
title : OMEGA’s blog)
2)
chose color 4 u’re intro ( i do not have a active
intro)
3)
chose a background Head ( u can chose 1 of
the those u find
there or use a URL 2 insert u’re
own
4)
chose if Head background will repeat (if
it’s a
small img.)
& also where 2 place it (if it’s a
small img)
c) Navigation options (mostly blog background options, 4 when
some1 reads 1 of u’re posts):
1) chose if u’re blog background will have a
color,or will be transparent or if u
will insert a URL with u’re own image
2) chose
if background will repeat or position in case it’s smalle image then
background itself
3) chose u’re
links colors (make sure u chose a diffrent color 4 link than
normal text if u do not want 2 confuse links with text)
d) Page options:
1) chose background 4 u’re blog’s main
page ( u can use
a transparent blog or insert
a image of u’re own using a
URL
2) chose the text color 4 u’re
posts
3) chose link color 4 post & modules
4) shoes color 4 u’re post titles
5) not really sure what this option
can do
e) Module options
:
1)
chose color 4 module border and type
2) chose color
4 module text title
3) chose color
4 module head background or insert a
URL
4)
chose a color 4 module body background or insert a
URL
f) chose a counter style or just leave it the old fashion
way (warning: if u chose a counter u will not be able 2 see nr of visits only
no. of views)
g) finally save
ß) create a costume module
there r 3 steps: A B & C
A) finding option Customize
B) finding option module
1)
chose Custom Mods option
2)
then chose Add option
3)
u must add title (or else u cannot create module)
4)
this is where u're going 2 inser a HTML code or Javascript
code (here r some codes 4 u):
adding img
<html>
<body>
<p>
<img src="Image URL"
width="150" height="150">
</p>
adding text
<html>
<body>
<script type="text/javascript">
document.write("<h1>YOU'RE TEXT HERE</h1>")
</script>
</body>
</html>
insert falling images (in my blog the snowflaks)
i removed the snowflakes cause some1 told me my page is loading slow...
do 2 the fact that his bandwidth is ~2MB ore some shit like that
<script type="text/javascript">
//Configure below to change URL path to the snow image
var snowsrc="IMAGE URL"
// Configure below to change number of snow to render
var no = 10;
// Configure whether snow should disappear after x seconds (0=never):
var hidesnowtime = 0;
// Configure how much snow should drop down before fading ("windowheight" or "pageheight")
var snowdistance = "pageheight";
///////////Stop Config//////////////////////////////////
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 800, doc_height = 600;
if (ns6up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = iecompattest().clientWidth;
doc_height = iecompattest().clientHeight;
}
dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
snowsrc=(snowsrc.indexOf("dynamicdrive.com")!=-1)? "snow.gif" : snowsrc
for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-50); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ie4up||ns6up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION:
absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT:
15px;\"><a href=\"http://dynamicdrive.com\"><img src='"+snowsrc+"' border=\"0\"><\/a><\/div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION:
absolute; Z-INDEX: "+ i +"; VISIBILITY: visible; TOP: 15px; LEFT:
15px;\"><img src='"+snowsrc+"' border=\"0\"><\/div>");
}
}
}
function snowIE_NS6() { // IE and NS6 main animation function
doc_width = ns6up?window.innerWidth-10 : iecompattest().clientWidth-10;
doc_height=(window.innerHeight &&
snowdistance=="windowheight")? window.innerHeight : (ie4up &&
snowdistance=="windowheight")? iecompattest().clientHeight : (ie4up
&& !window.opera && snowdistance=="pageheight")?
iecompattest().scrollHeight : iecompattest().offsetHeight;
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] += sty[i];
if (yp[i] > doc_height-50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = 0;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
}
dx[i] += stx[i];
document.getElementById("dot"+i).style.top=yp[i]+"px";
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i])+"px";
}
snowtimer=setTimeout("snowIE_NS6()", 10);
}
function hidesnow(){
if (window.snowtimer) clearTimeout(snowtimer)
for (i=0; i<no; i++) document.getElementById("dot"+i).style.visibility="hidden"
}
if (ie4up||ns6up){
snowIE_NS6();
if (hidesnowtime>0)
setTimeout("hidesnow()", hidesnowtime*1000)
}
</script>
insert mini YouTube
<p width="100%"
align="center"><embed
pluginspage="http://www.adobe.com/go/getflashplayer"
src="http://www.yourminis.com/Dir/GetContainer.api?uri=yourminis/yourminis/mini:youtube"
FlashVars="uri=yourminis%2Fyourminis%2Fmini%3Ayoutube&height=270&width=360&xheight=280&xwidth=370&swfurl=%2Fwidget%5Fyoutube%2Eswf&"
type="application/x-shockwave-flash"
allowScriptAccess="always"
wmode="transparent"
width="370"
height="280"></embed><br /></p>
inserting a link 2 image or text
add the line right be4adding the line where u add image or text
<a href="the Link's URL">
more codes at LINK u just need 2 register free (every code there is free)
5)
this option will move u're module if it's a small 1 from a left
position (iFrame) 2 a centerd 1(Just in page
*i also noticed that if u don't chose this option (just in
page) the custome module might just not apper sometimes
6)
if u chose NO BORDER option the module will not
have : a border, a title module, module background
& module head background
7)
chose option Add or Cancel if u're done or if u don't want
2 create
C) saving 
update 21.July.2008
Ω ) mini tutorial on adding
a playlist to blog
1)
go to playlist.com and sign up
2)
sign up help
3)
loging in
4)
search 4 music
5)
search 4 music step 2
6)
adding track
7)
confirmation message
8)
step 1 4 how to get code to paste in BitComet blog
module
9)
step2
10)
step 3- selectplaylist (u may have more)
12)
step 4- options
13)
step 5 -code
14)
step 6 - be carefull when u copy code
I made this tutorial for koyotee39 but he managed to get it right before i made it so if any1 needs it pls look at images but do not copy them witout my permision!
more updates will be added if necesary