Sign In | Sign Up

My Profile

OMEGA
294499
.....
Points: 722
Country: Romania

Shortcuts

Categories

Post

TUTORIAL 4 BLOGS
Size: Large, Medium, Small Sun Jan 20, 08 06:19 AM | Category: announcement
33

          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

 

  

Link: http://blog.bitcomet.com/post/14696/ ©
Add to favorites | Quote Reads (6590) | Comments (54)
Prev: Marvel games

Related Posts

CommentsReload

szekelylevi Mon Feb 18, 08 06:11 AM

Good work, just Congratulations.

If you have time ,visit my blog too.

szekelylevi
szekelylevi Mon Feb 18, 08 06:17 AM

Am uitat sati spun ca nu este necesar sa inserezi tagurile <html><head></head>,<body></body></html> pentru ca este inclus automat

de catre scriptul de pe server.

Oricum felicitari!

szekelylevi
MadOmega (OMEGA) Tue Feb 19, 08 02:46 PM

dap bine oricum merge si cu shi fara da drak o mai stat sa caute ca mere sau nu cu sau fara

▓▓░░ O|V|GA was HERE!™ ░░▓▓
dave195809 (south african dave) Sat Feb 23, 08 02:23 AM

already have voted hear

To all the fantastic people on bitcomet love you all
MadOmega (OMEGA) Sun Feb 24, 08 12:25 AM

ty

▓▓░░ O|V|GA was HERE!™ ░░▓▓
ALORD Sat Feb 23, 08 10:41 PM

hello buddy thx but i meant it thx for the guide it's just so cool now i just need time to improve my blog thx forever


MadOmega (OMEGA) Sun Feb 24, 08 12:25 AM

np & ty 4 visiting

▓▓░░ O|V|GA was HERE!™ ░░▓▓
carrie1987 (trendy.cazer) Mon Feb 25, 08 04:25 AM

voted for you keep this site very good


MadOmega (OMEGA) Mon Feb 25, 08 06:37 AM

TY

▓▓░░ O|V|GA was HERE!™ ░░▓▓
army3700 Sat Mar 8, 08 02:36 AM

heay nice work man and long time no see :)

oh yeah i'm releasing html cources that can be add to the blogs :) but still the first release i didn't make it :( but here is the help page :) i hope you will like it ;)

http://army3700.hostsnake.com/html_102.htm and please tell me how is it ?


MadOmega (OMEGA) Sat Mar 8, 08 03:05 AM

good work

▓▓░░ O|V|GA was HERE!™ ░░▓▓
gazdoc Wed Mar 19, 08 11:40 PM

Thx very much

Ennnnnnnnjoy
MadOmega (OMEGA) Thu Mar 20, 08 03:00 PM

u're welcome

▓▓░░ O|V|GA was HERE!™ ░░▓▓
thorgaz Mon Jul 21, 08 03:31 PM

NOWTHEN !

Well after your visit i've taken dave's link off my page mate. n replaced it in the links section to this page.As you are the one that as done all the top work! Anyway mate keep it up n Thanks again.

PS had to thorw you my vote far your Patter

your's (Gary) !

Make love with all your heart & soul & you'll never "EXPERIENCE" anything else like it in your life.xXx
MadOmega (OMEGA) Mon Jul 21, 08 03:47 PM

TY

▓▓░░ O|V|GA was HERE!™ ░░▓▓
ENGY82 Mon Jul 21, 08 06:13 PM


MadOmega (OMEGA) Tue Jul 22, 08 01:14 AM

ty 4 visit

▓▓░░ O|V|GA was HERE!™ ░░▓▓
trogan2000 Sat Jul 26, 08 12:58 AM

mind if i take some widgets and pics off ur blog?? i esph like this one http://images.torrentportal.com/images/seed.gif

i will wait for a reply before adding any

I aim to misbehave. The Doc Just Got Sooooo Much Better. Let's be bad guys.
MadOmega (OMEGA) Wed Jul 30, 08 07:00 AM

yes u can

▓▓░░ O|V|GA was HERE!™ ░░▓▓

TOP
You need to sign in before