Sign In | Sign Up

My Profile

OMEGA
106403
.....
Points: 406
Country: Romania

Shortcuts

Categories

Post

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

          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)

Λ ) 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
 

 

 

  
N/A
Link: http://blog.bitcomet.com/post/14696/ ©
Add to favorites | QuoteReport Reads (1667) | Comments (31)
Prev: Marvel games

CommentsReload

andypham171083 (Andy) Sun Jan 20, 08 11:03 AM

very useful and clear information

andy
MadOmega (OMEGA) Sun Jan 20, 08 12:37 PM

i try my best


zoebug98 Tue Jan 22, 08 01:41 AM

Thanks for the great information. Your site is cool.

Lieutenant Colonel Zoe (pronounced like Zoey)
MadOmega (OMEGA) Tue Jan 22, 08 06:42 AM

ty


Ichisanno (Michi) Sun Jan 27, 08 06:44 AM

Thanks...

Wish I Had An Angel
VioletShimmer (Wonderland) Wed Jan 30, 08 08:24 AM

Your information was very useful. Thanks!

Make a wish on a shooting star.
MadOmega (OMEGA) Wed Feb 13, 08 10:29 AM

ty,ty


dave195809 (south african dave) Thu Feb 7, 08 04:35 PM

wow thanks going to try wicked

To all the fantastic people on bitcomet love you all
MadOmega (OMEGA) Wed Feb 13, 08 10:29 AM

ty


christara Fri Feb 8, 08 08:07 PM

Cheers mate,e for the lessons glad i dropped by

laters byeeeeeee

its just mad being mad-its just crazy being crazy-but its great just being me
MadOmega (OMEGA) Wed Feb 13, 08 10:28 AM

ty


dave195809 (south african dave) Sat Feb 9, 08 02:53 AM

your advice is brilliant how do i insert a picture in the snowflake im a bit thick cant get it right soz to trouble

To all the fantastic people on bitcomet love you all
pamehot2003 (Jonathan) Tue Feb 12, 08 06:24 AM

where do u insert the code for the falling objects....in the modules page or where because i know how to gain a code but pasting it in a location is the part i need to know to finalise the process...thnx....almost a month asking different people for help and nothing...i hope you can finish the poor dorout im going through

Today is the tomorrow,that we worried about yesterday and all is well. ;)
MadOmega (OMEGA) Wed Feb 13, 08 10:16 AM

**********

paste the code in the body of the module... make sure u have a name 4 u're module or it will not be created...& also u need a image URL it's right in the 3rd line:

var snowsrc="IMAGE URL" just replace IMAGE URL with a real URL like: http://image.blog.bitcomet.com/postpic/20080130/5034355_exgcpy080130150532.gif

& those images r going 2 be the falling objects...

*********

also do not forget do click the options No border & Just in page cause the code needs 2 manifest out of the module!!!!!!!!

_____________________________________________________________

u can use JPG or GIF (or anyother format 4 that matter)... press little blue "omega images" in my tutorial at the second part: ?) create a costume module.... u will understand more


christara Thu Feb 14, 08 08:07 PM

hi there mate,e just come back to ask a qeustion..

firstly would you mind if i put a link on my page directing people to yours...?

and i get messages with quotes underneath in grayed out..and for the life in me i can not figure it out...on how to put them there myself..

like the page... very informative..

laters byeeeeeeee

its just mad being mad-its just crazy being crazy-but its great just being me
MadOmega (OMEGA) Sat Feb 16, 08 12:36 PM

kk back at ya


gazdoc Sun Feb 17, 08 11:08 PM

Hi

thx very much for the tutorials, please tell me how do I insert a pic or javascript in the comments section as i get a message that the subject could not be parsed whenever i try to insert it.

Ennnnnnnnjoy
MadOmega (OMEGA) Tue Feb 19, 08 02:47 PM

kk i'll visit



TOP
You need to sign in before