Monday 17 October 2011

A Simple CSS problem?

I defined a site in dreamweaver. Then i attached a css file to the index page. Then i set the 'font' tag in css to verdana, with size 9.... but when i type something on the index page....i see no change to the font.

I want verdana (with size 9)....in full site. I want that whenever i type anything it automatically becomes of that font. What to do...plzzzzz help...A Simple CSS problem?Your index page and all other pages have to be linked to the CSS file in Dreamweaver and the same when you upload them to your site.



Ron

My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?

In the past a search for Morgan Hill Dance would usually list our site (http://www.geocities.com/morganhilldance) at number three. I recently changed the format and added frames (I used MS Word) and added some Meta key words. The index is now basically just the frame format. I'm not sure where I should put the title and Meta tags anymore so I put them on every page. Is this right or should I just put a title and key words only on the index page. Is yahoo punishing me? Also, did MS Word add too much superfluous junk?My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?Hi, your meta information is improperly formatted...



%26lt;meta%26gt; is not a tag. After your title, you should have the following:



%26lt;META NAME=%26quot;description%26quot; Content=%26quot;Your Page description goes here%26quot;%26gt;

%26lt;META NAME=%26quot;keywords%26quot; Content=%26quot;comma delimited string of keywords here%26quot;%26gt;





that should do it..
My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?
contact yahoo. they may have an explanation.
My web site was ranked high in yahoo search now it is gone from the results. What do I need to change?
You provided yourself with the answer in your question.



You put it into frames.



They are notoriously bad for search engines. The se's like to have some text to get their teeth into and by changing over to a frames based layout you have removed all the text that was on the page.



It would be good to write the page in a different program also. Try to use standard html as the coding is very bad from office / word.

How do I add a background to this web page with this code.?

Ok. Any help would be great. I have a myspace profile page and would like to change the background in my layout from gray to a image I have saved on photobucket.com and my computer (obviously). This is the code at the begining. NOTE: I didnt use any editor online. I used codes from a layout I found so it's different than any myspace page out there.



%26lt;style type=%26quot;text/css%26quot;%26gt;

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-color: 444444;

}



table, td {

background-color: 444444;

}



.main{

position:absolute;

left:50%;

top:125px;

width:800px;

z-index:1;

margin-left:-400px;

}



.main a:link, .main a:active, .main a:visited {

color: a3bdc8;

text-decoration: none;

font-size: 1em;

}



.main a:hover {

color: ffffff;

}



img {

border: 0;

filter:alpha(opacity=80);

-moz-opacity: 0.80;

opacity: 0.80;

}



img:hover{

filter:alpha(opacity=95);

-moz-opacity: 0.95;

opacity: 0.95;

}



p, li {

font-size: 1.2em;

color: f0f0f0;

}



.title1, .title2 {

font-weight: bold;

text-transform: lowercase;

letter-spacing: -1px;

color: dbdbdb;

}



.title1 {

font-size: 1.3em;

}



.title2 {

font-size: 1.2em;

}



.title2 a {

font-size: 1.1em;

}



.sidebar .title2 {

padding: 0 0 0 12px;

}



.newnav {

margin: 11px 0 20px 0;

padding: 0;

text-transform: lowercase;

letter-spacing: -1px;

}



.newnav a {

font-size: 1.2em;

color: d0d0d0 !important;

}



.newnav a:hover {

color: ffffff !important;

}



.newnav .active {

color: ffffff !important;

}



.newnav li {

list-style: none;

display: inline;

margin: 0 0 0 13px;

}



.sidebar {

float: right;

width: 200px;

}



.content {

float: left;

width: 500px;

padding: 0 0 0 28px;

}



.breaker {

clear: both;

margin-top: 25px;

border-top: 1px solid;

border-color: 777777;

background-image: url(%26quot;http://img440.imageshack.us/img440/鈥?br>
background-repeat: repeat-x;

height: 200px;

}



.cell {

float: left;

padding-top: 10px;

margin: 0 0 0 25px;

}



.cell-inner {

width: 225px;

padding: 0 10px 0 0;

}



.bottoms {

clear: both;

padding: 45px 0 0 0;

}



textarea {

background-color: 555555;

border: 1px solid;

border-color: 666666;

color: f0f0f0;

padding: 3px;

overflow: hidden;

}



input {

background-color: 444444;

color: f0f0f0;

border: 1px solid;

border-color: 666666;

}



.askfirst {

clear: both;

text-align: center;

padding: 25px 0 0 0;

}

%26lt;/style%26gt;

%26lt;div class=%26quot;main%26quot;%26gt;

%26lt;table style=%26quot;width:800px; height:800px; cellpadding:0px; cellspacing:0px;background-color:444444;鈥?br>
%26lt;tr%26gt;%26lt;td valign=%26quot;top%26quot;%26gt;

______________________________________鈥?br>


Thats wat I have as the background right now. I'd like to change that to this image html code:



%26lt;a href=%26quot;http://s262.photobucket.com/albums鈥?target=%26quot;_blank%26quot;%26gt;%26lt;img src=%26quot;http://i262.photobucket.com/albums/鈥?border=%26quot;0%26quot; alt=%26quot;Photobucket%26quot;%26gt;%26lt;/a%26gt;



______________________________________鈥?br>


Please help I do not know how to put this code in and would love to learn.How do I add a background to this web page with this code.?Change this:

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-color: 444444;

}



to this:

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-color: 444444;

background-image: url('url where the image is located');

}





see http://www.w3schools.com/css/css_referen鈥?/a>

for more options on background images and css.



^ To the person above, you forgot to put ' around the url.
How do I add a background to this web page with this code.?
Since you are changing the background of your page, you only need to edit the body off the CSS. Change your first 6 lines to the following:





%26lt;style type=%26quot;text/css%26quot;%26gt;

body {

font-family: helvetica, arial, sans-serif;

font-size: 62.5%;

background-image: url(http://i262.photobucket.com);

}





Of course, you need to update the image url located within the ( ) in order for your background to appear correctly. And that should solve your problem.

Php include coding help?

i need to know how do i code the buttons to go to a page within the index page.. i know it was like index.php?page something like that but im not sure. all i know is %26lt;?php include(%26quot;menu.php%26quot;); ?%26gt; which will show another page in the index but how do i set up the buttons to actually change to another page in index.phpPhp include coding help?It's index.php?page=title_of_page_inserted_he鈥?So for example, if you wanted the link to go to a page you named %26quot;links,%26quot; it'd be index.php?page=links
  • rodents
  • lot of gold for sale
  • How to hide ALL comments on myspace?

    Yes i know the code where you hide the comments on the page. but now people can view them just by changing the URL.

    EX.



    profile.myspace.corn/index.cfm?fuseact鈥?br>


    they just change the viewprofile to viewcomments and they are done. is there a setting or anything so they can see your comments at all?How to hide ALL comments on myspace?Of what I know, there's absolutely no way to keep people off your comments completely. You can hide them, but they're still going to be able to change the URL. Granted, not many people know that shortcut, and if they don't learn it, they won't be able to look up your comments. But other than that, there's nothing to hide them.
    How to hide ALL comments on myspace?
    www.pimpwebpage.com
    How to hide ALL comments on myspace?
    No. All the code does is hide it on your page. If they really want to see it they can go into the source and find the link that shows all the comments.
    you could just delete them.... but other then that, i dont think so. sorry mate.

    How to change this myspace page?

    i want my comments and everything on the right side moved next to my picture.

    can anyone tell me how to change it or tell me whats wrong

    here's the link http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile%26amp;friendid=137863441How to change this myspace page?i don't think it has anything to do with your layout,cause my page is looking something like that even though it never was before and its doing it to everyone on my friends list pages too.i think myspace is just working out a bug
    How to change this myspace page?
    It's the layout you have. Try a different one.
    How to change this myspace page?
    change your layout

    How can i add a layout to my blocked page? (myspace)?

    like this:



    http://profile.myspace.com/index.cfm?fus鈥?/a>





    when you click on someones page and its blocked how do you change how that looks





    thanks in advanceHow can i add a layout to my blocked page? (myspace)?You have to use the MySpace Profile Editor:

    http://profileedit.myspace.com/index.cf>



    Keep in mind that the profile editor and copy and paste codes aren't compatible. If you want to change from what you did with the profile editor, you have to either use the editor again, or clear the editor:

    http://returntru.net/?pg=faqs%26amp;ch=clrEdit鈥?/a>

    How do i get my top friends to show on my myspace page?

    Please don't give me any answers unless you've tried it and it works. I've tried all the obvious changes and they haven't worked. This is the layout I'm using in the About Me section. Thanks





    %26lt;p%26gt;%26lt;a href=%26quot;http://www.createblog.com/layouts/鈥?title=%26quot;Grab Myspace Layouts and Myspace Codes%26quot;%26gt;%26lt;img src=%26quot;http://www.createblog.com/images/li鈥?border=%26quot;0%26quot; alt=%26quot;Myspace Layouts%26quot; style=%26quot;position:absolute;top:0px;left:0p鈥?/%26gt;%26lt;/a%26gt;%26lt;/p%26gt;%26lt;style type=%26quot;text/css%26quot;%26gt;body div table tbody tr td font {visibility:hidden;}

    body table div table tbody tr td font {visibility:visible;} table td div div font {visibility:hidden;}

    tr {background:transparent;}

    body table div font a, body table div div {visibility:hidden;}

    body table table div font a, body table table div div {visibility:visible;}

    table div font a, table div div {visibility:hidden; display:none;border:0px!important;backgr鈥?br>
    %26lt;/style%26gt;











    %26lt;style%26gt;td td td td table {display:none;}%26lt;br%26gt;.btext, .redlink{display:none;}%26lt;br%26gt;%26lt;/style%26gt;









    %26lt;style type=%26quot;text/css%26quot;%26gt;





    .extendedNetwork {display:none;}

    .latestBlogEntry {display:none;}

    .userProfileURL {display:none;}

    .userProfileDetail {display:none;}







    .x {visibility:hidden;}

    td, tr, table {height:10px;}

    .btext {display:none;}

    .blacktext12 {display:none;}

    .orangetext15 {display:none;}





    %26lt;/style%26gt;





    %26lt;style%26gt;

    .Hide Orange Bars

    td.text table {width:100%;}

    .friendsComments td table, .friendsComments td.text table, .friendSpace table, .blurbs, .blurbs td.text {background-color:transparent; border:0px;}

    %26lt;/style%26gt;





























    %26lt;style%26gt;table, tr, td, .userprofileurl div{height:0%; border:0px!important; padding:0px!important; background-color:transparent;}



    table, tr, td, body, marquee, textarea, input, form{cursor:default!important;}



    body{background-color:ffffff; background-image: url(http://cbimg6.com/layouts/07/09/23/21777aa.jpg); background-attachment:fixed; background-repeat:repeat-x;background-po鈥?text-align:center;}



    .btext, .latestblogentry br, .redtext, div td form, .text .text b,

    table table td.text table td.text table table tbody td table, .orangetext15, table div div, .whitetext12, .text .text .orangetext15, .contacttable, .navigationbar span{display:none;}



    .blacktext10{ color: ;font-size: 8pt;font-family:century gothic;line-height: 12px;letter-spacing:-2pxfont-weight: bold;text-decoration: none;text-transform: lowercase; }



    .orangetext15{ color: ;font-size: 8pt;font-family:century gothic;line-height: 11px;letter-spacing:pxfont-weight: bold;text-decoration: none;text-transform: lowercase;visibility:; }



    .blacktext12{ color: ;font-size: 8pt;font-family:century gothic;line-height: 12px;letter-spacing:pxcolor: ;font-weight: bold;text-decoration: none;text-transform: lowercase; }



    .navbar{visibility:visible;}

    %26lt;/style%26gt;

    %26lt;style%26gt;



    .btext{ color: ;font-size: 8pt;font-family:century gothic;line-height: 11px;letter-spacing:pxcolor: ;font-weight: bold;text-decoration: none;text-transform: lowercase; }



    i {color: ;font-family: century gothic;font-size:pt;text-transform: ;font-style:italic;font-weight: normal;}



    b{ color: ;font-size: 8pt;font-family:century gothic;line-height: 10px;letter-spacing:pxcolor: ;font-weight: bold;text-decoration: none;text-transform: lowercase; }



    table{width:450px;}



    u {color: ;font-family: century gothic;font-size:pt;text-transform: ;font-style: none;}.redtext,{ color: ;font-size: 8pt;font-family:arial;line-height: 11px; letter-spacing:pxfont-weight: bold;text-decoration: none;text-transform: lowercase; }



    td{text-align:center}



    .whitetext12 {font-family:century gothic; color:000000; font-size:10px; text-transform:lowercase; text-decoration:none; font-weight:normal; line-height:10px;}



    .orangetext15 {font-family:century gothic; color:000000; font-size:10px; text-transform:lowercase; text-decoration:none; font-weight:normal; line-height:10px;}



    .btext {font-family:century gothic; color:000000; font-size:10px; text-transform:lowercase; text-decoration:none; font-weight:normal; line-height:10px;}



    .redtext {font-family:century gothic; color:000000; font-size:10px; text-transform:lowercase; text-decoration:none; font-weight:normal; line-height:10px;}



    textarea, input {font-family:Century Gothic; color:000000; font-size:10px; text-transform:lowercase; text-decoration:none; font-weight:normal; line-

    height:10px; height:30px; width:200px; }



    .redbtext {font-family:century gothic; color:000000; font-size:10px; text-transform:lowercase; text-decoration:none; font-weight:normal; line-height:10px;}



    u {font-family:century gothic;font-size: 9px;line-height: 9px; letter-spacing:0px;font-weight:normal;co鈥?none; text-transform:lowercase;border-bottom-c鈥?border-bottom-width: 3px; border-bottom-style: double;}



    big {

    font-family:century gothic;

    font-size: 20pt;

    liHow do i get my top friends to show on my myspace page?First, remove this







    %26lt;style%26gt;td td td td table {display:none;}%26lt;br%26gt;.btext, .redlink{display:none;}%26lt;br%26gt;%26lt;/style%26gt;







    Then, out of this block of code





    .btext, .latestblogentry br, .redtext, div td form, .text .text b,

    table table td.text table td.text table table tbody td table, .orangetext15, table div div, .whitetext12, .text .text .orangetext15, .contacttable, .navigationbar span{display:none;}





    Remove %26quot;.btext%26quot; and %26quot;.redtext%26quot;







    Then, out of THIS block of code





    .x {visibility:hidden;}

    td, tr, table {height:10px;}

    .btext {display:none;}

    .blacktext12 {display:none;}

    .orangetext15 {display:none;}





    Remove %26quot;.btext {display:none;}%26quot;, and you should be good to go.

    WHAT THE HELL HAPPEND TO MY PAGE!?!?

    i was going to edit some stuff on my myspace profile and when i clicked preview profile it said something about Profile 2.0 %26quot;check it out you can always go back%26quot;

    so i did then it showed me my page like this:http://profile.myspace.com/index.cfm?fus鈥?/a>



    so i didnt like it and i hit discard changes and then it left my page like that please help!!!!



    how can i make it go back to the old profile???WHAT THE HELL HAPPEND TO MY PAGE!?!?step-by-step instructions (with pictures)

    http://www.myspace-compilation.com/switc鈥?/a>
    WHAT THE HELL HAPPEND TO MY PAGE!?!?
    click go back to old version...its on there somewhere...keep looking
    WHAT THE HELL HAPPEND TO MY PAGE!?!?
    i like your hair
    haha. i did that too. go to edit profile or customize profile and then press switch back to old version
    go to my account



    go to customize my profile



    2.0 will show up



    up in the center of page, you will see %26quot;change back to 1.0 profile



    click it and go from there.
    no need to shout I am not deaf, yes it on an an austrailian site?
  • programming
  • channel
  • How do you get rid of the top part of my myspace? http://profile.myspace.com/index.cfm?fuseaction=user.viewpr?

    the blue part on top of my page. where the home links use to be at? or at least change the colorHow do you get rid of the top part of my myspace? http://profile.myspace.com/index.cfm?fuseaction=user.viewpr?myspacegens.com is a great codes website.

    the link below is what your lookinq for i think.





    http://www.myspacegens.com/handler.php?p鈥?/a>

    Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?

    I have a problem logging into myspace. I am entering the correct info, my account has not been hacked (I am able to login with another comp), and I've tried logging in with different browsers. I enter in my info, i click the login button, and it just directs me to this page:



    http://myspace.com/Modules/Splash/Pages/Index.aspx



    It's been a couple of days now, and still nothing has changed. Is it something specifically that's interfering with my logging into myspace? I've used spyware software, virus scan, etc.. and it still doesn't work. I've cleared out temp internet files and cookies.. still nothing. System restore.. still nothing.



    I've tried everything.. and it still just brings me back to the same page.. the homepage.. with that address in the address bar.



    I need some good technical assistance. Thanks.Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?From what I can tell this getting to be a common problem...We are having the same difficulties...



    Sorry I wish I could help....Just wanted you to know alot of people are having the same issue not just you and me...
    Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?
    It's not a problem with your computer it is a problem myspace is having. I could log in after the second try of it yesterday and my friend who lives down the street couldn't after many many tries. It should eventually work though, I think this is worth contacting Myspace over, 2 days is too long lol Good Luck!!
    Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?
    I'm having the same problem. %26amp; i can't figure out how to fix it either. I guess your supposed to wait it out? But it's been about a week now %26amp; it's still the same. Answers please...
    It could be the page being blocked by the owner of the computer. In IE, you can block pages by going to TOOLS%26gt;INTERNET OPTIONS%26gt;SECURITY and scroll over to double click on RESTRICTED SITES (a red circle with a white line through it). On this screen, press the SITES button to see if MySpace is listed. If it is, unblock it by clicking on it and choosing REMOVE.



    Hope this helps!
    I'm having the same exact prob...as a matter of fact, this is the 2nd time this month. The 1st time I just deleted cookies and temp int files. But this time it seems more major...I've contacted MySpace twice since the 26th, and still no response. I've done all the steps of deleting cookies and temp internet files, so on and so on. I guess this is a global issue...I've run out of ideas.
    It's doing the exact same thing to me. Log in...http://www.myspace.com/Modules/Splash/Pa鈥?/a>

    I can get in just fine at the library. I've contacted Customer Service like 4 times, and I haven't recieved anything back yet. At least I'm not alone.
    don't worrie i've been trying to for this couple of minutes and it does the same thing........i believe it is and i feel much better knowing i'm not the only one having this problem lol
    me too!!=( I had the same problem I even tried everything I'm so desperate I even tried to get into my myspace but went back to the same homepage.good thing I'm not the only one whose having difficult problems
    i just tried it july 6 th 2007 at 11:41 AM and I have the same problem



    thats the very first time I had any problems with myspace
    once you get to this page, you ARE pressing %26quot;home%26quot; once again, right?

    after logging into myspace, everybody sees that page. but then you are supposed to click %26quot;home%26quot; and you will be directed to your main profile page.



    if clicking %26quot;home%26quot; does not work, try clicking %26quot;mail%26quot; or %26quot;search%26quot; or %26quot;music%26quot; or any of the other links that are listed across the top of the page in small letters.....Clicking on one of these should redirect you to another place in the site.



    you may have already done all of this, but i just wanted to throw it out there just incase.....

    PHP Question (easy points for a pro)?

    Okay I have my personal website hosted using apache and PHP 5 on my PC.

    I have it so that when you click on a link in the menu, it uses the GET function to get a certain html page. This allows me to change my template on my index page without having to change every single page.

    For example:

    %26lt;?php

    include(%26quot;/pages/%26quot; . $_GET['id'] . %26quot;.html%26quot;);

    ?%26gt;



    I am still learning PHP, and need some help with this:

    If the id is invalid, and doesn't have an html file in %26quot;pages%26quot;, how can I have it redirect to another page instead of displaying a PHP error? I think its something like %26quot;if doesnotexist%26quot; or something.



    Sorry if I made that too complicating, but i'm not good at writing in a %26quot;techy%26quot; way.

    ALSO: Please don't suggest that I start using databases instead of my html pages, I prefer it the way it is.PHP Question (easy points for a pro)?if (file_exists (%26quot;/pages/{$_GET['id']}.html%26quot;))

    {

    include(%26quot;/pages/{$_GET['id']}.html%26quot;);

    } // if

    else

    {

    include(%26quot;otherFile.html%26quot;);

    } // else
    PHP Question (easy points for a pro)?
    you will need an if statement todo this something like.

    string goto = $_GET['id'];



    if ( goto != %26quot;%26quot; )

    {

    include(%26quot;/pages/%26quot; . $_GET['id'] . %26quot;.html%26quot;);

    }else

    {

    //goto the redirect page

    }



    this is based on the presumtion that get will return %26quot;%26quot; if there is no id
    PHP Question (easy points for a pro)?
    Maybe something like include($_GET['id'] == %26quot;%26quot; ? %26quot;/pages/otherpage.html%26quot; : %26quot;/pages/%26quot;$_GET['id'].%26quot;.html%26quot;);



    or if the id is populated but invalid then



    include(file_exists( %26quot;/pages/%26quot;$_GET['id'].%26quot;.html%26quot;) ? %26quot;/pages/%26quot;$_GET['id'].%26quot;.html%26quot; : %26quot;/pages/otherpage.html%26quot;);





    an inline if statement



    Hope that helps

    Friday 7 October 2011

    How do you get your main photo on myspace to change every second?

    Take a look @ this person's profile please...http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile%26amp;friendid=36811982. Now in photo album, under %26quot;My Photos%26quot; on the 4th page, that last picture of hers changes every few seconds. I want to know if someone knew how I could that. If you also check out Saaphyri from Charm School's myspace, http://www.myspace.com/saaphyri, she has that on her main photo as well, it changes. Their is a website on the side of that picture, but I can't make it out...if someone could please help me out and let me know how I can get my main Myspace photo on my profile to constantly change every second or so I'd really appreciate it.How do you get your main photo on myspace to change every second?Your links are no good, so I'm afraid I can't look at your examples. However, if you're talking about what I think you're talking about, try



    www.blibs.com



    It allows you to animate pictures so that it flashes different pictures. You can also do anything you can imagine to your pictures, right on the site without buying or downloading anything. It's really great.
    How do you get your main photo on myspace to change every second?
    use a graphics program to animate some photos and then stick the animation in as your pic
    How do you get your main photo on myspace to change every second?
    You can use a generator, like this one:



    http://www.freecodesource.com/index.php?鈥?/a>



    to make and animated image like those ones.
    Try this.



    http://www.banner-maker.net/



    -----
    LUNAPICS.COM OR MYTHEME.COM have the generator to make animated gifs.
    You would have to animate your pictures, either from a site or download a software.

    I have changed my homepage to index.html and now i cannot see any images on my homepage?

    just uploaded my files to geocities and replaced the index file with my homepage file that is also renamed to index.html. when i go to view my site the page comes up but i cannot see any images or anything else for that matter. just red x's where my images should be. any advice out there???I have changed my homepage to index.html and now i cannot see any images on my homepage?Did you also upload the images?

    A typical html link code to an image is:

    %26lt;img src=%26quot;imagename.jpg%26quot;%26gt;

    or

    %26lt;img alt=%26quot;background text%26quot; src=%26quot;imagename.jpg%26quot;

    These files could also be .gif

    Now 'imagename.jpg' must also exist in your root folder (public_html) sometimes they are placed in a separate folder called images.

    So just make sure that your images are also located in your 'public_html' as well as index.html folder and all the other folders that make up your website.

    Regards, Emily
    I have changed my homepage to index.html and now i cannot see any images on my homepage?
    re-upload photos
    I have changed my homepage to index.html and now i cannot see any images on my homepage?
    red 'x's mean that the HTML is fine, but the link to the images is not. Open up the index.html file and see if you have given the right path. Best in this situation is to give 'relative path' and not 'absolute path'.



    ie, just include the file name for the 'src' tag and dump all the htmls and images in the main directory
    hi



    there are few things that u have to check out



    - make sure that the links to the pictures are correct.

    - and that the pictures are in the same folder as yo index.html (this will depend in the point above)



    also check that you file names are correct and that u have used the correct file extentions for the pictures (.gif or .jpg)



    visit the link below for more practice



    hope this will help



    Spiceboy
  • excel
  • software
  • What does the "#" mean in this java script code and why am I getting a # symbol in my title of my webpage?

    function MM_preloadImages() { //v3.0

    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();

    var i,j=d.MM_p.length,a=MM_preloadImages.arg鈥?for(i=0; i%26lt;a.length; i++)

    if (a[i].indexOf(%26quot;#%26quot;)!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}



    I am not sure what the # is in this java script code. It is colored blue in dreamweaver and I was wondering if I need to change it - like it affects the title or something somewhere in the page.



    I also have a funky problem in my webpage title - the # symbol appears at the end of whatever I type and I dont know how to get rid of it. This is the index page of a website and the page includes a couple of cf includes that have navigation browsers in them. That is it- no content yet.



    How do I fix that problem?What does the %26quot;#%26quot; mean in this java script code and why am I getting a # symbol in my title of my webpage?The # is related to the HTML href property.



    Example:



    %26lt;a href=%26quot;#section1%26quot;%26gt;Jump to section 1%26lt;/a%26gt;



    is an anchor that will jump to this anchor on the page:



    %26lt;a name=%26quot;section1%26quot;%26gt;Section 1%26lt;/a%26gt;



    When you click on the first anchor, the page will then jump to the position of the named anchor.



    So this is really a link to an element within the same page rather than a jump to another page.



    That's exactly what the javascript is attempting to ignore - it only wants to preload images with a src that points to a direct URL. So if (a[i].indexOf(%26quot;#%26quot;)!=0) is making sure

    that arguments to the function should be URLS and not relative jumps within this page (in which case you would have a # at position 0 like in the example above).





    Your other problem can be demonstrated by looking at



    %26lt;a href=#%26gt;Click and watch the title%26lt;/a%26gt;



    When you click on this, the # gets appended to the URL of the current web page so you will see an extra # next to the URL in the address bar. It's the same effect as



    %26lt;a href=%26quot;anotherURL#%26quot;%26gt;Another page with #%26lt;/a%26gt;



    because you can also jump to a position in another web page like this.



    Hope this helps
    What does the %26quot;#%26quot; mean in this java script code and why am I getting a # symbol in my title of my webpage?
    I think it means number. IDK really
    What does the %26quot;#%26quot; mean in this java script code and why am I getting a # symbol in my title of my webpage?
    The hash/pound symbol has no special meaning native to JavaScript. In this context, it is being used to mark a condition that was designed into the data-model that your preload function expects. The programmer and data-designer agreed to that having the hash symbol in the first position of certain data elements would indicate a particular state to the function. In this case, if the # is NOTt the first character in a string item, then the program believes it to be the URL of an image file. This implies the use of a mixed datastructure (MM_preload.... - whatever that name refers to) of some sort with special characters used to mark particular types of data items.



    Pre-loading images is a standard practice. It improves the user experience by ensuring that all images that will be used are actually available before they are referenced by a function.



    I don't know what you mean by %26quot;the # symbol appears at the end of whatever I type.%26quot;

    How do I change the landing page in this html affiliate code? Please help ...?

    This is the code

    %26lt;a href=%26quot;http://www.jdoqocy.com/click-32711鈥?target=%26quot;_blank%26quot; onmouseover=%26quot;window.status='http://www.b鈥?true;%26quot; onmouseout=%26quot;window.status=' ';return true;%26quot;%26gt;Budget-Rent-A-Car%26lt;/a%26gt;

    %26lt;img src=%26quot;http://www.lduhtrp.net/image-327110鈥?width=%26quot;1%26quot; height=%26quot;1%26quot; border=%26quot;0%26quot;/%26gt;



    This is the landing page I want it to go to...



    http://www.budget.com/budgetWeb/html/en/deals/index.htmlHow do I change the landing page in this html affiliate code? Please help ...?first of all you don't need href=%26quot;the url%26quot; since your using mouse over

    do this %26lt;a href=%26quot;%26quot; onmouseover=%26quot;window.status='http://www.b鈥?br>
    Budget-Rent-A-Car%26lt;/a%26gt;

    if you want the role over to be on the image don't use a hyperlink

    do this

    %26lt;img src=%26quot;httt://www.lduhtrp.net/image-327110鈥?onmouseover=%26quot;window.status='http://www.b鈥?/%26gt;
    How do I change the landing page in this html affiliate code? Please help ...?
    Just change http://www.jdoqocy.com/click-32711... to http://www.budget.com/budgetWeb/html/en/鈥?/a>

    Need help inputing an animated image into a webpage template?

    I'm helping a friend re-edit her website that was done by someone else in the past who designed it with a website template they bought. It was a Flash Animated Template that had regular html along with two .swf (shockwave files or flash animations) that were consistant on everypage (there's about 10 pages). She wanted me to change only ONE of the .swf's so I did and on the Home page (index), it works fine, but when I try to enter the destination of the animated file in the HTML of the other pages (the same way I did on the Home page), it DOESNT WORK?? Could there be something in the CSS of the template that is denying me access to change the .swf file?? The other person who did the website that bought this template is no longer around so is there anyone who might possibly help me?? I have no clue how to read CSS. Thanks.Need help inputing an animated image into a webpage template?Is the site on the Internet where we could see it? If so, post the URL and that might help get you an answer.



    Good Luck!
    Need help inputing an animated image into a webpage template?
    nevermind, i figured it out!

    Report Abuse

    How can i make a php file load from another directory?

    I have a php page (index.php) at the root directoy of my server. Depending on GET variables it shows different things. The problem is that i NEED to use directions like www.mypage.com/someting instead of www.mypage.com/index.php?var=someting



    I tried to put an index.php on each directory with this code:

    %26lt;?

    $var=%26quot;something%26quot;;

    include('../index.php');

    ?%26gt;



    It did exacly what i needed, except that it looked for all the images and included files in /something instead of the root



    If there is any way to change where it looks for the files WITHOUT modyfing the root index.php it would be perfect.



    Or maybe there is some other way to do it. please try to give me a solution that doesnt involve changing all the code in the page.How can i make a php file load from another directory?try chdir(); to change the current directory. you may also use getcwd(); for certain needs.

    read following documentation

    http://ca.php.net/function.chdir



    i'd write...

    %26lt;?

    chdir(%26quot;../%26quot;);

    include('index.php');

    ?%26gt;



    one thing many new PHP programers confuse with is that when you include another php file, it still considers the current directory as where it was imported from.



    good luck

    Myspace Page Design Help?

    ok on my page

    http://profile.myspace.com/index.cfm?fus鈥?/a>

    i have music bars moving right.?

    i got this layout off coolchaser and now i want to change the layout completely but keep those bars.

    is there any website that can get me the codes for that kinda thing?Myspace Page Design Help?go to this website it always is a help! http://www.layouts-forever.webs.com it has every code!
  • read orf file
  • xp
  • Website landing page help?

    I have opened my own website company and am still learning, I downloaded a clients site with cuteftp and made the alterations of all the pages and have uploaded it again and it is not showing my index.html as my landing page what have i done wrong.

    www.thehumanelement.co.za



    please help do i need to change a setting or put some html code to make the page the defaultWebsite landing page help?You have name it Index.htm instead of index.htm.

    index.html and index.php are also acceptable.

    Capitals and spaces are not a good idea with web addresses.
    Website landing page help?
    check your domain provider / web host to see where each is routing as the %26quot;main%26quot;.

    How to remove new Youtube Index thing?

    A few days ago after i logged in it changed the youtube homepage to sort of the old youtube.com/iyt thing. It removed the videos being watched right now flash section and just totally made the page ugly. I wanna know how i can go back to the older version. If i log out of my account it goes back to the old version which i want :(

    Help plsHow to remove new Youtube Index thing?If your URL address bar says something like this:

    %26quot;www . youtube . com / iyt%26quot;, then you have been

    sucked into the vortex hell of a different YouTube

    universe, and there's seemingly no way out of it --

    no matter what you try (including wiping out your

    temporary internet files, cookies and history).



    Then there is the dreadful beta homepage, where

    almost all familiar things have totally disappeared

    (the %26quot;videos currently being watched%26quot;, %26quot;promoted

    videos%26quot;, %26quot;featured videos%26quot; and %26quot;related videos%26quot;).

    If you keep seeing %26quot;customize my homepage%26quot; all

    over the place and in your nightmares, then you've

    been sucked into vortex purgatory.



    IYT: If what I describe in my 1st paragraph is your

    issue, I got suckered into it by helping somebody

    else on Yahoo!Answers, and clicking on the link

    that the guy provided. Though it took me 2 hours,

    I finally did succeed in banishing it forever.



    If you have the letters %26quot;iyt%26quot; anywhere in your URL,

    then click on my avatar and send me a message

    with the address of your YouTube channel or your

    email. I have the solution for you, which you'll be

    able to resolve in a matter of minutes (not hours).



    BETA: If my 2nd paragraph is your problem, then

    you have to clear your cache of all its termporary

    internet files, cookies and history. Then please do

    it all over again just to be sure everything is really

    and truly gone.



    Thereafter, shut down your computer and reboot.

    Everything should then be fine, even after you log

    back on to YouTube. If you're not quite sure how

    to clear your cache, click on my avatar and send

    me a message with the address of your YouTube

    channel or your email.



    (In both instances, my info uses simple English,

    is very datailed and is over 9000 characters long,

    thus taking up 7 separate Y!A messages.)



    Whichever one of these 2 predicaments is yours,

    your problems are finally over -- once and for all.

    How would you edit this page?

    http://profile.myspace.com/index.cfm?fus…



    ^^^^^^ this is my friends page (don't believe me, whatever) and she wants me to edit it. I want to make it very very very very good. like change the name font, get a better background, find a matching (in color) picture to put in the about me section and keep the writing where it is because i like that. and have the same song but have a player where it doesn't show the song but you can pause it and play it. just so no one can steal the song.



    so number the codes or sites on where they can help

    1.) Display name changing

    2.) Background

    3.) Matching Picture (in matching colors.)

    4.) Music Player Hiding Song Having Pause/Play button. Thanksss.



    P.S- If i love the answer and it workss?, i will make yours the best answer. (:How would you edit this page?i would hide the orange bars an text!



    %26lt;style%26gt;

    .Hide Orange Bars and Text{rr}

    td.text table {width:100%;}

    .friendsComments td table, .friendsComments td.text table, .friendSpace table, .blurbs, .blurbs td.text {background-color:transparent; border:0px;}

    .orangetext15{display:none;visibility:…

    %26lt;/style%26gt;





    and get rid of that blue on Interests just paste the code on Interests

    looks funky but it works

    %26lt;style%26gt;

    .katamari Section Manager

    { http://abrax.us/SectionManager }

    table.interestsAndDetails td.text {display:none;}

    table.interestsAndDetails span.lightbluetext8 {display:none;}

    .interestsAndDetails td {width:0px;}

    table.interestsAndDetails, table.interestsAndDetails td {border:0px;}

    table.interestsAndDetails table{direction:rtl;}

    table.interestsAndDetails table td {direction:ltr;}table.interestsAndDetail… td td {background-color:white;}

    %26lt;/style%26gt;



    thats all i would do oh these comment box goes with your profile!

    its the same as your backround..





    %26lt;center%26gt;%26lt;form method=%26quot;post%26quot; action=%26quot;http://comments.myspace.com/inde…

    %26lt;input name=%26quot;friendID%26quot; value=%26quot;YOURFRIENDIDHERE%26quot; type=%26quot;hidden%26quot;%26gt;

    %26lt;textarea name=%26quot;f_comments%26quot; class=%26quot;rofl%26quot;%26gt;%26lt;/textarea%26gt;%26lt;br%26gt;

    %26lt;input type=%26quot;submit%26quot;class=%26quot;pagakis%26quot; value=%26quot;leave me a comment!%26quot;%26gt;%26lt;/form%26gt;%26lt;a href=%26quot;http://static-layouts.com/myspace%26quot; style=%26quot;position:absolute; top:60px; left:2px; height:300px; width:100px;background-image:url(); background-repeat:no-repeat; z-index:9;%26quot; class=%26quot;navb%26quot;%26gt;%26lt;img src=%26quot;http://i227.photobucket.com/albums/… border=%26quot;0%26quot;%26gt;%26lt;/a%26gt;

    %26lt;style type=%26quot;text/css%26quot;%26gt;input.pagakis {color:000!important;

    background-image:url(%26quot;%26quot;);

    font-size:9px !important;

    width:190px !important;

    overflow: hidden;

    height:15px !important;

    font-family:tahoma !important;

    background-color:fff339 !important;

    border-color:000000 !important;

    border-width:1px !important;

    border-style:solid !important;

    letter-spacing:0px !important;

    text-transform:lowercase !important;

    line-height:9px !important;

    font-weight:normal !important;}textarea.rofl{

    background-image:url(%26quot;http://i227.phot…

    background-position:top center !important;

    background-color:fff !important;

    width:190px !important;

    overflow: hidden !important;

    height:75px !important;

    font-family:tahoma!important;

    color:000 !important;

    line-height:14px !important;

    font-size:14px !important;

    text-transform:lowercase !important;

    border-color:000000 !important;

    border-style:solid !important;

    border-width:1px !important;

    }%26lt;/style%26gt;

    How do i Load random .swf into my html?

    The user go in to the index page. After 3 minutes the 1st set of content will change to new content. how do i do it using flash?

    Or simple jpeg?How do i Load random .swf into my html?I see...ive tried to use Adobe Flash before and you can create very good things with it, once you get the hang of it!!



    I used to use this website: http://media-convert.com/

    When you upload a file, such as this content you want to change, you then can click on the output content...

    Look thru the list and you will find 1000s of different types you change the file to such as %26quot;Flash Video (.flv)%26quot; and %26quot;Flash SWF (.swf)%26quot;



    Hope this helps :)

    Help! Oopsie...edited .php instead of .html?

    I was changing my website (I don't know how to program in html, just change minor things) and I accidentally edited index.php instead of index.html. Now, when I go to the home page (index) it takes me to the catalog. Without actually seeing the programming, can anyone help me?Help! Oopsie...edited .php instead of .html?Unless you're more specific there's not much we can do. The only solution would be to paste the contents of your index.php, but I wouldn't recommend it on a public forum.
  • one web hosting
  • Website hosting in workgroup
  • What Code Do I need To Play Myspace Videos Automatically on Myspace page?

    Can Anyone tell me what i have to do to automatically play this myspace video to play automatically on myspace page?? No u cn8 change it in the settings on myspace it has to be a CODE. Can anyone help me with this? Please tell me where i put the code in in this plz?? Thnx







    %26lt;a href=%26quot;http://myspacetv.com/index.cfm?fus鈥?Weed/kicking It W/ ur Girl/Slow Wind - R. Kelly (Live)%26lt;/a%26gt;%26lt;br%26gt;%26lt;embed src=%26quot;http://lads.myspace.com/videos/vpla鈥?flashvars=%26quot;m=7283012%26amp;v=2%26amp;type=video%26quot; type=%26quot;application/x-shockwave-flash%26quot; width=%26quot;430%26quot; height=%26quot;346%26quot;%26gt;%26lt;/embed%26gt;%26lt;br%26gt;%26lt;a href=%26quot;http://myspacetv.com/index.cfm?fus鈥?Weed/kicking It W/ ur Girl/Slow Wind - R. Kelly (Live)%26quot;%26gt;Add to My Profile%26lt;/a%26gt; | %26lt;a href=%26quot;http://myspacetv.com/index.cfm?fus鈥?Videos%26lt;/a%26gt;What Code Do I need To Play Myspace Videos Automatically on Myspace page?EDIT: OK, after several attempts to get a working code for this (via talking on YIM with you), I am posting the answer for anyone else who reads this and would like to know.



    ** The following assumes you are linking a video to your profile which comes from MySpace TV **



    Here is the full embed code (extra text and links taken out) you will need to automatically have the video begin playing when someone looks at your page:



    %26lt;embed src=%26quot;http://lads.myspace.com/videos/vpla鈥?flashvars=%26quot;m=7283012%26amp;type=video%26amp;a=1%26quot; type=%26quot;application/x-shockwave-flash%26quot; width=%26quot;430%26quot; height=%26quot;346%26quot;%26gt;%26lt;/embed%26gt;



    ** That's all you need to know. **



    But, if you want to know *why* this works, read below:



    Why does this work? Well, if you notice the only thing that's different about the code is in the %26quot;flashvars%26quot; attribute, you change:



    type=video

    to

    type=video%26amp;a=1



    a=1 stands for %26quot;auto-play equals true%26quot; (1 is true, 0 is false).



    So you're simply telling the browser that this file is a video (type=video) and (%26amp;) it should start playing when the page loads (a=1).
    What Code Do I need To Play Myspace Videos Automatically on Myspace page?
    You're the man! Much appreciated. Thank you!

    Report Abuse

    On google, my site's contact page is displayed instead of it's home page?

    My site is listed on goggle but when you click the link it brings you to %26quot;/contact.html%26quot; instead of %26quot;/index.html%26quot;.

    How do i change this?

    Is there something in google webmaster tools to help?On google, my site's contact page is displayed instead of it's home page?Google have indexed your contact page but may be not yet indexed the index.html page so the problem is occurring.



    you need to check if all the pages of the site is been indexed or not.

    if not you can submit your site map to Google by Google Webmaster tools. And remember to put Meta Tags description and keywords properly and different for every web page so that Google can see the difference.



    Hope your index page will be indexed asap.



    Note: Do put different Meta Tags in different web pages.
    On google, my site's contact page is displayed instead of it's home page?
    This happens quite often, they list my article pages usually, and not my home page for my website.

    (see the source for a link to my website)
    On google, my site's contact page is displayed instead of it's home page?
    Go to RanknumberOneOnGoogle.Com, they will get your website 5,000 garaunteed visitors a week and front page of the google search engine in 24 hours

    Java assignment to generate web page?

    I am in a java class and have to use Eclipse. I am finding I hate Eclipse because it's always prompting me to change the answers by itself which breaks all the other lines of code. It also isn't telling me what is wrong.



    Anyway, the assignment is this:



    create a Java program called %26quot;WebPageGenerator%26quot; that will do the following:



    * Ask the user for their name

    * Ask the user for the name of an image file

    * Ask the user for their homepage URL

    * Use the information entered by the user to dynamically build a simple Web page file called %26quot;index.html%26quot;. That Web page should have a non-white background color and use a non-black text color. It should simply contain:

    o the name entered by the user in large type

    o the image whose file was entered by the user

    o the image should have a link, sending the user to the user's homepage



    I have the first message box popping up that asks for the user's name, but I need a place for the variable to be stored.



    The instructions say to use PrintWriter. When I try to add print writer as an imported package eclipse doesn't like it. I can't add that under the JOptionPane that gets input for the first question?



    I don't know how to add printwriter and I don't know how to get multiple boxes to collect user's input. I can't find resources on the java site or googling.



    Thank you.Java assignment to generate web page?THIS HAS NOTHING TO DO WITH THIS QUESTION LOL... I just wanted to say THANX!! For the great advice on my question you made me feel SOOOOOOOOOOO much better! your tha best! =]
    Java assignment to generate web page?
    dude, this is a cakewalk.



    do you know html??? if so..



    build a string that is the code for the html webpage. you can get all the variables and enter them as you need them.



    then all you have to do is save the file as a .htm



    super easy



    btw, i hate Eclipse too

    How can I change the tab name on a web page?

    My new web page has just arrived. Everything is great, but the tab name is %26quot;index%26quot;, just as the starting html page on the site. How can I change it to say %26quot;di Dise帽o%26quot;? Every page in the world has its own name. I don't want mine to be %26quot;index%26quot; Thanks.

    my webpage is www.di-diseno.com or http://server44.dayanadns.com/~giacc/How can I change the tab name on a web page?%26lt;title%26gt;this is the title of my page%26lt;/title%26gt;

    Frames in Dreamweaver MX 2004?

    Does anyone know how to link the frames ...



    I'm using dreamweaver to create a webpage that has 3 frames and one overall master page so 4 pages in total for the main page, if I change the frame link location for the webpage for uploading I am no longer able to work within the frame and if we do that for all 3 frames how do I then make the master frame understand that this has all happened or change the master frame to a weblink as well because there doesn't seem to be an option for that.



    So basically I want to work within dreamweaver but I can't do that if I make an external website so there a way to synchromize it?



    And how can I change the master frame or what is going to be the index page index?Frames in Dreamweaver MX 2004?I'm sorry Holly, I have no clue. Hopefully some of my smart peeps will see this and help you out.
  • have you ever been afraid to
  • pink hair
  • Help, im getting pissed i dont know whats wrong with Yahoo?

    I already have a web page for my domain in yahoo, and it doesnt seem to replace the previous web page! Ive renamed it index.html, even deleted my cookies, caches and every deletable internet file, and i even recoded the html! and it still didnt change the previous index i used! heLLLP!!! its annoying me!!! :-(Help, im getting pissed i dont know whats wrong with Yahoo?A web url might be helpful. and maybe tell us something that you are seeing on the page that you should not be seeing (ie what is the difference between your old page and new page) this way we can tell you if we are seeing your old or new page to make sure you are still not cached for some reason. Also make sure there is no other file named index (index.htm, index.php, etc)

    My website has been put up wrong and i need to get html changed to the index,how do i get it changed?

    my site has gone wrong as its frozen and you cant use any links on it , when i asked someone they said yahoo has put the main html page on and that has no metter tags so it wont work he said yahoo should have put the index html on as thats the one with the metter tags on it so people can use the links , i need to get yahoo to resubmit it from the main to the index for it to work, dos anyone now how to get in touch with the right people as im going round in circules, thanks ArranMy website has been put up wrong and i need to get html changed to the index,how do i get it changed?Ok, this make little sense. Do you mean the index page is not the first page the user comes across? All your webpages should have meta tags too, so change that anyway.



    If it is your webpage, then it is upto you, not yahoo, to sort it out. Just FTP/upload all the pages again, rename the page you want to display as the home/main page as index.html (or other extension) nd add it to the highest directory. So if your site in www.mysite.com the index page will be www.mysite.com/index.html



    As for the links, ahve you wrote them out correctly? in this format %26lt;a href=%26quot;url%26quot;%26gt;text here%26lt;/a%26gt;
    My website has been put up wrong and i need to get html changed to the index,how do i get it changed?
    thanks acidedge and every1 else, the problem was that my website has been done in frames and it froze so my mate went and found a jarva script and put the jarva script into the websites index and it sorted it out, many thanks acidedge

    Report Abuse

    I'm confused on how to upload html layouts to a site, please help!?

    so i have a site on sitesled which i am practicing uploading premade layouts to



    when i download a layout it give me an index, style, and then a folder of pictures.



    what do i upload?

    if I upload the index and style, the pictures aren't in the layout



    also, do i edit the style or the index to change the page?



    any help would be appreciated!I'm confused on how to upload html layouts to a site, please help!?In general, in your site ROOT directory, you have a file called index.htm, index.html, or index.php. You MUST have one of them.

    You can have a file called %26quot;styles.css%26quot; is you use CSS.

    It is a good practice to store the images in another sub-directory (i.e. %26quot;pics%26quot;). So, you upload your images in: root/pics/.

    In your html file, the images are called using:

    %26lt;img src='pics/myimage.jpg'%26gt;


    I'm confused on how to upload html layouts to a site, please help!?
    I assume you know how to upload files using FTP programs.



    1. You need to upload everything including index, styles and pictures into the public_html folder.



    2. If images didn't show up, then you need to check your index source code, I assume its in HTML



    3. If that HTML is correct, then you need to check the style file and i assume its an CSS file.
    I'm confused on how to upload html layouts to a site, please help!?
    Assuming that this is how your directory server for your website is laid out:



    /index.html

    /styles.css

    /images/*



    * Images for website in this folder



    You upload index.html, styles.css, and /images/ either through some upload interface through your browser (if your host provides such), or through an FTP client like FlashFXP (if you host provides FTP access).

    Yahoo Geocities web page help?

    I am working with Yahoo geocities home pages and, I made one already.... I saved it and everything however when Im going to it its saying I have not yet created one. Then it says something about changing title name or something to index.html, I know I saved it yet I cannot access it to edit it or to make it visible to the public. Someone with knowledge please help me..Yahoo Geocities web page help?The first page or default page must always be called index.html, it's a Internet standard for the web. that way somebody can visit your page without typing the whole address. the other pages you create and link to the main page can be called what you like. It may take a while for the page to appear. Try holding the shift key when you access the page, that will get the page direct from Geocities and not off your ISP's server. hope that helps. Good luck!
    Yahoo Geocities web page help?
    You homepage needs to be named %26quot;index.*%26quot;, usually like index.html or index.htm. Delete the one created by geocities, and rename your homepage to index.html with the online File Manager.
    Yahoo Geocities web page help?
    Rename your filename to %26quot;index.html%26quot;. This is the first page that load when people visit your web site.

    My space page messed up?

    I was messing around with my page and must have down loaded a newer version of it and i dont like it. my page looks retarded and i dont know how to change it. here is the url to my page



    http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile%26amp;friendid=450405672

    please look at it and helpMy space page messed up?um i see it fine
    My space page messed up?
    i think your gay based on your picture. it helped
  • using lip plumping gloss
  • horses
  • What do you think of Obama changing to ProWar, right after his secret meeting with Bilderberg PuppetMasters???

    Google has 97,200 hits on this subject.



    Yahoo has 607,000 hits on this subject



    Here are a few chosen at random. I do like the point that is being made in the first reference



    http://www.youtube.com/watch?v=BID7uuwAy鈥?/a>

    http://www.worldnetdaily.com/index.php?f鈥?/a>

    http://operationawakening.wordpress.com/鈥?/a>

    http://www.rawstory.com/news/2008/Bilder鈥?/a>

    http://www.prisonplanet.com/articles/jun鈥?/a>

    http://www.globalresearch.ca/index.php?c鈥?/a>What do you think of Obama changing to ProWar, right after his secret meeting with Bilderberg PuppetMasters???Our leaders have betrayed us.
    What do you think of Obama changing to ProWar, right after his secret meeting with Bilderberg PuppetMasters???
    The Emperor will be most displeased that you let his secret out...
    What do you think of Obama changing to ProWar, right after his secret meeting with Bilderberg PuppetMasters???
    Well Since no one becomes US President unless AIPAC says so it doesn't surprise me at all that Obama did his flip flop.
    He hasn't become pro war...he's just stating he may revise his timetable on how to pull out of Iraq.
    My personal opinion about Hussein Obama aside, I think that this should be a sign to all the people that are standing behind him. He used the war as a stepping stone for the Primaries and now since he won the primaries he is showing his true colors. If he is this indecisive about what he believes, what will happen when he has to make a decision about National Security?? Something to think about
    Hey, we always have Nader to vote for if you're worried about this. I'm pretty sure he's the only candidate today that can't be bought. Obama hasn't changed is views on the war. And, please don't try to tell me that McSame is different from Bush because we all know better.
    Considering that he hasn't changed his position on the war at all, I think your suspicions are a bit misplaced.
    WE knew it was coming when he got Zbigniew Brzezinski on board.

    He is the chief globalist right behind David.
    A typical flip flop.
    He was having a private meeting with Clinton....concerning the election in Feinstein's house....
    There is nothing approaching where he has said that he's pro-war. He just wants to get a better timetable to exit Iraq.
    And You are shocked by this?
    We are talking about the group that allegedly picked John Kerry's running mate in 2004 - some powerful influence, eh?



    And a quick glance at your links....Youtube, Prisonplanet, Rawstory............I'm not surprised that you erroneously characterize Obama's present position as %26quot;pro-war.%26quot;
    Obama LIED to get your money and your vote in the primary or caucus, SUCKER!



    Obama has no moral center.

    He will say anything, do anything to get elected.



    How many people has he %26quot;thrown under the bus%26quot; when they became liabilities?

    Remember how wonderful it was that he got the idea and title for his book %26quot;The Audacity of Hope%26quot; from his beloved, long-time mentor, the Rev. Jeremiah Wright?

    How pleased he was to get all those earmarks for his close friend Father Pfleger?

    How happy he was all those years to get those campaign contributions from Tony Rezko?



    The Bilderbergers? George Soros? Who else?

    Everybody owns a piece of Obama.

    He'll sell his soul to anyone to get elected.
    It is a serious doubt that Obama would be considered to be involved with this Organization.

    These people are world players, not local bar room tale tellers.
    how can anyone say he hasn't changed his views when he says he will rivise his timetable,the reason for this is the surge is actually working
    Neocon, Obama did NOT changed to ProWar. You may stuff all your links you know where.
    sound good

    he'll be there with a flak jacket



    hugs!

    Trying to fix a website design problem?

    Hello



    I created this web-site %26quot;hardenorganization%26quot;dot%26quot;com in dreamweaver I haven't linked the pages as of now, but my question is%26quot; when you go to the home page it loads up in slices how do you correct that so it loads like a normal website?%26quot; and also how do I change that %26quot;index%26quot; home page in google



    Thanks, any help would b great



    Trying to fix a website design problem?You should consider some good design practices, you basically just used images for everything, which is very bad, espicually when the same is easily done using HTML and CSS alone.



    If you insist on using images, then i highly suggest you take advantage of a well-known technique known as CSS Spirites, see also: http://www.brugbart.com/Articles/119/ - CSS Sprites



    For your second question, you need to change this %26quot;%26lt;title%26gt;index%26lt;/title%26gt;%26quot; in your source-code, see also: http://www.brugbart.com/References/82/ - HTML TITLE Tag



    Most important is the missing doctype on your website, this could potintially lead to incorrect rendering of your page in any browser. Its also a huge mistake to use tables for layout, what you are doing can easily be done using CSS with far less markup. See also: http://www.brugbart.com/Articles/4/ - The Importance of Doctypes



    You should also avoid using deprecated attributes and elements in your site, generally they should be avoided in new websites/documents.

    When requesting index.php I get the index.html, why cant I REQUEST the .php even though the html is present?

    I am setting up a site on a different ISP to my usual one.



    Whenever I request index.php I am served the index.html



    Why cant I specifically request the index.php even though the index.html is present?



    I do this on my normal ISP and it works fine.



    For example I upload a temporary index.html saying site under construction and then remove it when opening the site.



    This way I can put in the http://www.domainname.com/index.php and I get the new site, while everyone else get the under construction page of the default index.html



    So why on this ISP could it not be working and it is always serving index.html?



    (I have tried adding a DirectoryIndex line to the .htaccess but of course all that does is CHANGE the default, which is NOT what I am trying to do here)When requesting index.php I get the index.html, why cant I REQUEST the .php even though the html is present?DirectoryIndex can accept a list of multiple options, i.e.



    DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm



    So if you want to change the order, and make index.php more important, move it to the first choice, i.e.



    DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm



    Then, when you upload it, it'll take precedence until removed.
    When requesting index.php I get the index.html, why cant I REQUEST the .php even though the html is present?
    This looks like a question for your ISP. It depends on the settings of their environment...

    Yahoo geocities web page?

    Still having trouble with yahoo geocities web page. It said I needed to go to file manager to change the name to index.html to make it visible to the public. I did that and when I go to the site it is still saying it is not avaiable. What am I doing wrong with it now??Yahoo geocities web page?First you can make a new html, save it as index.html and delete the one on the site, then upload your new index.html. If there is still the same problem don't forget to refresh the page several times.. using the browser's refresh button.. It happened to me also... I changed the html and the site appeared the same way so I clicked the refresh button to solve the problem. Another solution would be to try another free hosting service.. for instance here : http://www.bravenet.com/cserv.php?pid=4%26amp;鈥?/a> you can find better and a lots of tools to make a new website.
    Yahoo geocities web page?
    besure to save the changes after renaming the file to index.html

    and besure that your file uploaded properly
    Yahoo geocities web page?
    TRY TO CHANGE THE INDEX.HTM TO ANOTHER NAME

    Why is not showing my domain name in search engine on first page.?

    my website address is not shown in the first page in the search engin till I put whole website address. How to change the contant of indexWhy is not showing my domain name in search engine on first page.?You usually have to pay the search engine money to get to the top of the page. Consult Google Marketing.
    Why is not showing my domain name in search engine on first page.?
    Thanks for choosing my answer as best answer. Below is as far as I can get you. I don't have a marketing degree, so I don't think I am professional enough to tell you the right way to do this. Good luck. http://www.google.com/intl/en/鈥?/a>

    Report Abuse


    Why is not showing my domain name in search engine on first page.?
    You'll need to get some quality links from other sources, and expand the content of your site. What may be happening is that your domain is listed on other websites that have been around for a while and your site has either been dead for a while or has not been updated. My two suggestions are to create worthwhile content (and a good amount of it, 50+ pages) and try to get other websites to link to yours, through your content and even from just posting comments on other people's blogs (relevant, worthwhile comments; don't spam).
  • reliable web hosting
  • stay in abusive relationships
  • My MySpace Page?

    Ok, I Know That I Can Change The %26lt;i%26gt;Background%26lt;/i%26gt; On My Page But I Want To Know If I Can Change The White Middle Part Of My Page To Something Other Than White.



    Here's My Page http://profile.myspace.com/index.cfm?fus鈥?/a>



    Do You Know What Im Saying?



    So Please If I Can Change It Tell Me:)

    ThanksMy MySpace Page?it has to be programmed in another layout.
    My MySpace Page?
    can u tell me how u did that



    n i dont think u can

    Index of /index.html?

    Hi everyone,



    I've designed a webpage using dreamweaver, i've uploaded to unlimited FTP and changed the name of the file to index.html put when i go to view the page it just shows the index of /index.html. I know i'm just missing something from the file i've uploaded but what? Please helpIndex of /index.html?You have to put index like this:



    yoursite.com/index.html



    So when you visit yoursite.com index.html is the first thing you see.



    and not like this:



    yoursite.com/index/index.html
    Index of /index.html?
    You should put more detail.

    Weather it is showing any error or you page or what?
    Index of /index.html?
    Sounds like somehow you have uploaded a directory called index.html!!



    The web server will only display this behaviour for directories. Check your directory structure closely. Obviously you want a file in the root called index.html rather than a directory with that name
    first of all u need the FTP.

    then login to u r site.

    Right click on u r site then upload again the file ( if u have backup).

    Else

    go to index folder cut the files from there and keep in www or public_html .

    What is the song playing on this link : http://smumustangs.cstv.com/index-main.html?

    There is a song playing when you play the video at the right of the page. What is that song. I can't figure it out. Play the football video at the right of the screen and tell me please. And no...it is not hells bells. It changes at 29 seconds in.What is the song playing on this link : http://smumustangs.cstv.com/index-main.html?Do u mean the one that sounds like its from an action movie - Actually I think it was in a movie, now grrr i forgot, im gonna ask my bro %26lt;many moments later%26gt; ok he didnt know but after searchin i found similar songs on batman begins theme and dark knight, so just maybe it might be the same composer - Hans Zimmer. His songs sound kinda similar to the one u wanna know if u look at them on youtube, the theme from crimson tide and pirates of the carribean sounds alot like it too
    What is the song playing on this link : http://smumustangs.cstv.com/index-main.html?
    I'm not sure but if you really want to know try sending out emails to the marketing and promotions department at smu



    http://smumustangs.cstv.com/school-bio/c鈥?/a>

    Do you know how to create a website?

    I have uploaded my webpages to the Public_html folder in ftp but when I try to visit my website, I am shown my Index page instead of my Home Page. How do I get my Home Page opened instead of the Index of .... page when someone clicks my website. How do I change this setting.Do you know how to create a website?You can use a website called freewebs.com

    It's really cool and you can make websites for free
    Do you know how to create a website?
    i dont
    Do you know how to create a website?
    yeah,freeweb lets u make ur own website but i dunno if it free or not.

    Help with embedding music on website.?

    Can someone please tell me how I would embed the following to play only on the initial page load and not play again if the page changes...so far I have only this. But it plays every time. on my index.php page.



    %26lt;embed src=%26quot;/music/Bet you wish 2.mp3%26quot;

    width=%26quot;140%26quot; height=%26quot;40%26quot; autostart=%26quot;true%26quot; loop=%26quot;FALSE%26quot;%26gt;Help with embedding music on website.?It will play every time the page refreshes as refreshing is equivalent to coming onto the page for the first time. As far as I know, there is no way to prevent this other than turning off the autostart and leaving the visitor to click the on/off himself
  • email
  • row cell
  • Myspace page!!!!!!!!!!?

    ok so on my myspace profile page i have absolutely NOTHING! i wanna have a customized background but i don't wanna use the thing from myspace. can somebody pls send me a youtube video or something that shows me exactly how to change up my page..... it has to be easy and simple to understand....



    [thanks in advance]



    -Talia

    http://profile.myspace.com/index.cfm?fus鈥?/a>Myspace page!!!!!!!!!!?http://www.layoutstuff.com/myspace-backg鈥?/a>





    ok all you have to do is just like u put comments on people page ok click on the layout you want the click the code it should have highlighted it the back click it and select copy then go to your myspace page and go to edit profile and where you put your interests books etc. black click and say paste and the same with everything else good luck oh yea and make sure you say save changes
    Myspace page!!!!!!!!!!?
    Here are some cool backgrounds for myspace:

    http://sunshinee.com/layouts.php



    You copy the code of the layout and paste it in your 'About Me'. It's really simple. You'll get the hang of it ;)

    I am having problems with Wordpress.org please help?

    Ok, my website is http://www.hiphopdogs.com you can go to it. Ok, if you go to the page, you will see that my wordpress blog is there. The only way i was able to get it there, is by renaming my index.html page to index.html.old on my server



    well im trying to add this to my index.html page which is now gone. I dont know what to do i been at this for ours. I want to go to my index.html page, and see my website, and have the wordpress on the same page. What am i doing wrong? . I login to the admin, i type a blog, hit publish, and view, but then its only my website with something like ?=1 after my url. So someone suggested that i change index.html to index.html.old and that gave me my blog, but now my index page is gone. How do i combine the 2 like its suppose to be? Thank you please helpI am having problems with Wordpress.org please help?I checked out your WordPress website and it looks like you have figured out how to get it to load correctly.



    Now I see you have an issue with the adding the flash video. You have a couple of options here. You can either use the Kimili Flash Embed plugin to embed your Flash movies or you can use the more advanced TubePress WordPress plugin. Since you are trying to embed a YouTube video you should go with TubePress.



    I see that you have not changed your permalink settings yet (%26quot;...something like ?=1 after my url).



    To change your permalink settings %26gt;%26gt;%26gt; click on your Settings panel %26gt;%26gt;%26gt; click on Permalinks %26gt;%26gt;%26gt; click on the Custom Structure radio button and copy this into the window



    /%post_id%/%category%/%postname%/



    You want /%post_id%/ to come first in your permalinks - to find out why this is important take a look at the WordPress Codex page on using Permalinks (correctly using Permalinks). %26gt;%26gt;%26gt; http://codex.wordpress.org/Using_Permali鈥?/a>



    Good luck.
    I am having problems with Wordpress.org please help?
    1. I want to go to my index.html page, and see my website, and have the wordpress on the same page == You can't. Because if you have index.html, this will override index.php of wordpress files. I assume you want to run a normal website and wordpress? If yes, then you can install wordpress in a subfolder, and create a %26quot;blog%26quot; button in your html file. So whenever people come to your site, they can go to your blog by clicking %26quot;blog%26quot; button. Otherwise, you can't have static index.html and a wordpress blog in the same page.



    If you want to have .html file for wordpress, try plugin called %26quot;html on pages%26quot;. This will make your pages have .html in the end of URL address. To make posts having .html at the end, you need to change permalinks in Admin page. But do note, that some people having permalinks error. so backup first before changing permalink if you have important posts.



    2. something like ?=1 == This is because you haven't changed your permalinks settings. If you change permalinks, it will show; yourdomain.com/posttitle or yourdomain.com/posttitle.html (if you add .html in your permalink)



    3. I would love to add a members login to help with spam == Careful with people registering to your sites, they can be bots and hacking intentions. Just be careful.



    4. i also want to be able to ad videos to the site == This can be done easily by embedding the code (don't forget to switch from %26quot;visual%26quot; to %26quot;html%26quot; tab in post box whenever you want to write a post, otherwise the video won't show.



    5. to see how many times a topic has been viewed also = this can be achieved by having plugin popular posts.

    Since you've changed your home page, I receive an error when I access My Yahoo. What's up?

    Error message is internet explorer cannot open the site

    http:my.yahoo.com/index.htm.

    I've checked my internet connection settings and they seem to be OK.Since you've changed your home page, I receive an error when I access My Yahoo. What's up?I am having the exact same problem. Happens every now and then. But last two days it has happened continuously. I'm looking for an answer as well.

    Need help to make these link come to center on my website?

    Hello,

    www.ankurjalvi.com is the link .. on index page you can ssee that links below the header are all aligned to left. I am not able to figure out how to change it to look in center in css ... any help?Need help to make these link come to center on my website?The %26quot;menu_t%26quot; is not a class as you have it here. I hope it's a typo, but a class has to have the dot in front: .menu_t



    Same for the %26quot;indent%26quot; class: .indent



    If you are centering text, then use the text-align: center; , otherwise, set a width (and height, if needed) and use:



    margin: 0 auto;



    Ron
    Need help to make these link come to center on my website?
    You could try to put all of that text between a %26lt;div%26gt;%26lt;/div%26gt;, give it a label (class=%26quot;center%26quot;).



    Thus it should look like:



    %26lt;div class=%26quot;center%26quot;%26gt;

    %26lt;p%26gt;text%26lt;/p%26gt;

    %26lt;p%26gt;text%26lt;/p%26gt;

    %26lt;p%26gt;text%26lt;/p%26gt;

    %26lt;/div%26gt;



    Then under the style either on your imported css page or at the %26lt;head%26gt; put:



    div.center {text-align:center}



    Everything between the %26lt;div%26gt; should center.

    What does this tell you folks Crackdown on illegals produces crime decline?

    Following a crackdown on illegal immigration, officials in Prince William County in northern Virginia are reporting their numbers reveal a significant decrease in violent crimes committed.



    The violent crime rate in Prince William County plummeted 22 percent in 2008, according to new reports.



    In recent years, the county had experienced a steady influx of illegal immigrants that led to its development of one of the most aggressive immigration policies in the nation.



    The county for a time required all police officers to question all detainees about their immigration status. In 2008 the county loosened the policy to require police officers to only question those taken into custody about their immigrations status. If someone is found to be in the country illegally, they are sent to local Immigration and Customs Enforcement for deportation.The policy was changed because county officials feared that lawsuits would result from the former policy.



    Last week, Prince William County Police Chief Charlie T. Deane presented the department's 2008 crime statistics, pointing out that the overall crime fell well below the five-year average.



    Robbery decreased by 8 percent and aggravated assault fell by 36.5 percent in 2008.



    Deane said the statistics are not entirely accurate because crimes committed on illegal immigrants may not be reported. He stressed that the police department will continue to protect all victims of crimes, regardless of their immigration status.



    %26quot;It's in the best interest in this community that crime be reported regardless of who the victim is, and we must get that word out 鈥?because you never know who the witness is going to be who will solve that case,%26quot; Dean said.



    As the nation continues to debate a federal solution to the immigration crisis, more and more counties and individual towns are taking responsibility into their own hands.



    Help Save Manassas is a private organization created by citizens who are committed to reducing the number of illegal immigrants in the city as well as the greater Prince William County region. It was modeled after Help Save Herndon, another Northern Virginia-based anti-illegal immigration organization that helped to decrease the number of illegals in Herndon. http://www.worldnetdaily.com/index.php?f鈥?/a>What does this tell you folks Crackdown on illegals produces crime decline?I posted this same question and they violated me before I could get any real answers. Of course without these illegals being here the crime rates would drop, any one with common sense would be able to see this.
    What does this tell you folks Crackdown on illegals produces crime decline?
    What a stupid argument because deportation as a crime prevention tool is only used against illegal immigrants %26amp; legal immigrants who are not citizens yet, meaning 90something% of the population is under no threat of deportation!!! What a load of cherry picked crap.

    Report Abuse


    What does this tell you folks Crackdown on illegals produces crime decline?
    Hate filled bigoted illegal alien messicon border criminals are just that.



    Hate filled bigoted illegal alien messicon border criminals.
    It means to me that every county should be doing this...



    No matter what the other statistics are deporting them would automatically reduce crime....they are criminals the minute they cross illegally...
    It doesn't surprise me that ridding of criminals reduces crime.
    It tells me that immigration raids are working
    it tells me u are completely outdated ...



    according to 2009 report crime has increased and it should continue going up because they will not have enough budget ... my guess is than all of this has been related to the number of police officers as i have read from several sources ratter than in the undocumented population ...



    the following is an update for u :



    http://wtop.com/?nid=25%26amp;sid=1642469
  • dynamic editing
  • clearing up my skin
  • Can you change the colors on your myspace blog page?

    I've been wondering if this is possible. I'm not talking about the profile page, I mean this:



    http://blog.myspace.com/index.cfm?fuseac鈥?/a>Can you change the colors on your myspace blog page?Go into blog, or manage blog on the homepage after you sign in. Then on the left there should be a 'Customize Blog' option. Just click it and you customize almost anything about it. Even the headings.

    Please Help. Do anybody know how to edit a php page? I don't understand the code and I can only edit html?

    But I can't convert the index.php to html. I am not a programmer I know nothing about php, I can only edit webpages in programs like Nvu because I can't write any code. I need a simple way to edit my index.php......Update: I changed index.html to index.php and it shows up on my site but the problem is now my site doesn't update automatically like it should with new videos and pictures please helpPlease Help. Do anybody know how to edit a php page? I don't understand the code and I can only edit html?Php pages are %26quot;scripted%26quot; html pages. That is that it's just html with a bunch of logic throughout. There is no way to edit them simply without programming php. There may be a different wysiwyg(what you see is what you get) than Nvu that you could use, but that's about it without touching code.



    I actually am not a big fan of php and would really recommend using something more powerful like %26quot;Django%26quot; but most people can't run python and can run php.



    My recommendation: if you want to have dynamic sites, find a coder or learn php because wysiwyg's will only get you so far.

    When I upload my webpage to my FTP server, it doesn't appear on the internet.?

    The website is already up, but when I try and update a page, (index.html for example) the changes don't appear on the internet, what am I doing wrong?When I upload my webpage to my FTP server, it doesn't appear on the internet.?Your browser downloads the page so it does not have to load it again every time it looks at it. When you are on the page, hold CTRL and press F5. Now your page will be recached, and you will see the changes.

    How to list Excel data in alphabetical order after already entering the data in chronological order?

    I am making an obituary index. I have 2 pages of names so far listed in chronological order according to date of death. I decided that it would be more convenient for people using the index if the names were listed in alphabetical order instead.



    How do I go back and change the first 2 pages of names from chronological order to alphabetical order?How to list Excel data in alphabetical order after already entering the data in chronological order?If your dates and names are in different columns.

    Select the whole data range (all columns) and then Sort on the Name column.



    If dates and names are in the same column, you should seperate them into different columns. (And keep them that way, Excel works better with one piece of data per cell).

    Text To Columns with a fixed width should work depending on how your data is parsed.

    Is there a downside to using the query string to send the page name to load?

    I'm setting up a website, and I have a template made in PHP. There are some sitewide variables in the top and then there is a content area. If I put in the content area an include function, and use a variable as the file name to include, then I can have links be ?p=example.php. This way I'll always use the index file as the template, so changing it will change the entire site.



    I'd get the file name variable using _GET, and if there is none, then it would load the home page content file.



    Is there anything I'm overlooking or should take into consideration with this method?Is there a downside to using the query string to send the page name to load?For security reasons i'd remove the .php in the variable but still include the .php file extension in the index page (if you get my flow)



    Also doing this opens your site to script injections. To stop this you'd want to clean the p variable by using:



    $page = $_GET['p'];

    $bad = array(%26quot;%26lt;%26quot;,%26quot;%26gt;%26quot;,%26quot;.%26quot;);

    $good = array(%26quot;*%26quot;,%26quot;*%26quot;,%26quot;*%26quot;);

    $clean_page = str_replace($bad,$good,%26quot;$page%26quot;);



    Now when people will attempt to close off some script and run another such as:

    ?p=%26quot;%26gt;%26lt;?php phpinfo(); ?%26gt;



    the code will read it as:

    ?p=%26quot;**?php phpinfo(); ?*



    (the %26quot;%26gt; closes off a html script which allows you to then run a php info script allowing php setup data to be displayed)



    which makes the attack useless.

    I may have forgotten some script endings but as far as I know that should do the trick
  • graphics animation
  • made on fingernails
  • Myspace! all the modules on my page are black except one! How do I make that one black too???

    http://profile.myspace.com/index.cfm?fus鈥?/a>







    take a look and tell me if you know how to change it!

    thanks to anyone who answers!Myspace! all the modules on my page are black except one! How do I make that one black too???just get another profile and your profile is private

    Who do you think edited Benoits page?

    Is there any smart people out there that may be able to figure out who edited Chris Benoits Wikipedia page hours before there was even any mention of the Benoit murders?



    Here is the link showing Wikipedia's change log and the time and date of the change. Cross reference it with the timeline of Chris Benoits missing WWE shows and text messaging.



    It's very strange.......tracers unite.



    http://en.wikipedia.org/w/index.php?titl鈥?/a>Who do you think edited Benoits page?Vince Mcmann haha
    Who do you think edited Benoits page?
    A geek in his mothers basment



    i still respect the guy i don't even no his family so why should i care i know his wrestling abilities and they make me proud
    Who do you think edited Benoits page?
    I wish I could, because that would be something to see. However, if it turns out that someone from WWE headquarters posted it, then whoever traces it could be in danger, honestly! I mean, it's very strange. MSNBC reported that the IP address was in the same city as WWE headquarters! It's really starting to give me the creeps!
    I have no idea - my guess - Dean Malenko.
    2 days ago i was looking Chris up on Wikipedia and it talked about his death and what happend. But I dont know whats goin on and what did people do to that page.
    r.i.p chris
    This is so bizzare. They better figure this out. And I hope Chris didn't kill his wife and son. That seriously isn't like him.