Saturday 24 September 2011

Do you like my myspace page ladies? What picture should I put up as my default picture?

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



The one i have up I like because I was having a lot of fun at that party with my friends. Comment me back let me know what I should change or if anything looks ugly. Be as honest as you can ;-)



%26lt;3 thanksDo you like my myspace page ladies? What picture should I put up as my default picture?I love it. Don't change a thing. I wish I was there on that beach.

How do you make multipage websites?

I have made a few webpages so far but am wondering if I am going about it the wrong way. I will make a main page (index.html) and then use that as a template for the rest of my site (copy and paste the code). This works great except for when I need to make a global structure change (i.e. change the order of items in the navigation) because I need to go through each page and change the html. This is just a copy and paste fix but doing it to 10 pages or so gets old real fast. How do you avoid this problem?How do you make multipage websites?This is a great question, and the whole point of using a slightly more advanced language than HTML.



In PHP, one of the most basic things you can do is write a page like this:



%26lt;? include 'header.html' ?%26gt;



%26lt;h1%26gt;Hello World%26lt;/h1%26gt;



%26lt;? include 'footer.html' ?%26gt;



you could make 30 pages this way, changing the stuff in the middle for each page, and if you want to change the navigation bar, you'd just change header.html once, and the change is applied to every page site-wide.



Of course, this is just the tip of the iceberg...
How do you make multipage websites?
Use iframes, php or javascript.. Use separate html for your navigations, header, footer etc. then just include or load those page to the %26quot;main page%26quot;. In that way, you only have to edit the page once since its only called by a script.. hope you get it..
How do you make multipage websites?
If you are able to use PHP on your site you can use PHP includes although includes do not require PHP. Lot simpler to not use it unless you plan to convert your pages to all PHP. See Server Side Includes at http://en.wikipedia.org/wiki/Server-Side鈥?/a>



This allows you to set up an include file with your site's nav menu and to add/delete just one file, upload and overwrite old include file, and have all corrections appear on every page that has the include code.



I certainly use it and saves lots of time when adding pages.



You did the right thing making a template to use for all your pages. I hope you made an external CSS file for all those pages to link to so you can edit style changes using just one file.



Your template should be set so that you can add content within the content div.



Ron

Can someone tell me how to change this page to english please?

http://uwp.italiannetwork.net/forum/index.php/



this is the site but i only can read englishCan someone tell me how to change this page to english please?www.freetranslation.com gave me an immediate translation on the German phrase i needed.
Can someone tell me how to change this page to english please?
Yes go to the right side and press it
  • hair braiding
  • what is your best money saving idea
  • Frontpage 2000 help needed?

    I have a simple blog that I created using Frontpage 2000.



    There is a heading row for the Masthead - and then 3 columns below. I would like for the two outer columns to be %26quot;fixed%26quot;, so that if I make changes in these two columns on the index page - the same changes will be applied to all the pages.



    Is this possible?



    Thank you in advance.Frontpage 2000 help needed?you can you frames



    %26lt;html%26gt;



    %26lt;frameset cols=%26quot;25%,50%,25%%26quot;%26gt;



    %26lt;frame src=%26quot;frame_a.htm%26quot;%26gt;

    %26lt;frame src=%26quot;frame_b.htm%26quot;%26gt;

    %26lt;frame src=%26quot;frame_c.htm%26quot;%26gt;



    %26lt;/frameset%26gt;



    %26lt;/html%26gt;



    check out this http://www.w3schools.com/html/html_frame鈥?/a>





    =============================



    if you have a server and using scripting programming, you'll have to make your outer columns include files. you'll have to cut your page into sections, for example any page will looks like this:



    %26lt;!-- Include File = %26quot;header.html%26quot; --%26gt;

    %26lt;!-- Include File = %26quot;left_nav.html%26quot; --%26gt;

    %26lt;div%26gt;

    your page content

    %26lt;/div%26gt;

    %26lt;!-- Include File = %26quot;right_nav.html%26quot; --%26gt;

    %26lt;!-- Include File = %26quot;footer.html%26quot; --%26gt;



    header.html should contain opening html, header and body tags:

    %26lt;html%26gt;

    %26lt;head%26gt;

    %26lt;title%26gt;my page%26lt;/title%26gt;

    %26lt;/head%26gt;

    %26lt;body%26gt;

    %26lt;div%26gt;

    %26lt;div%26gt;logo and header nav%26lt;/div%26gt;



    left nav:

    %26lt;div style=%26quot;float:left%26quot;%26gt;

    - nav item 1%26lt;br%26gt;

    - nav item 2%26lt;br%26gt;

    - nav item 3

    %26lt;div%26gt;





    right nav:

    %26lt;div style=%26quot;float:left%26quot;%26gt;

    - nav item 1%26lt;br%26gt;

    - nav item 2%26lt;br%26gt;

    - nav item 3

    %26lt;div%26gt;





    footer: should contain any footer links and it should close the document:

    %26lt;div%26gt;footer links, copyright%26lt;/div%26gt;

    %26lt;/div%26gt;

    %26lt;/body%26gt;

    %26lt;/html%26gt;







    now if you put all of these together you should have one complete document.

    Can I use PHP to display a random background when my website loads?

    I currently have 7 background images as jpeg files. I would like a random picture to be displayed when the browser loads the page. Is this possible using PHP? Can someone provide the code? Also the page is named as index.html would I then need to change this to index.php?Can I use PHP to display a random background when my website loads?Keep it simple and fast!



    Name your images image bg1, bg2, bg3 etc (for my example they are stored in /images/ directory).



    Add styles to your css sheet:



    .bg1 {background: white url(/images/bg1.jpg) no-repeat center;}

    .bg2 {background: white url(/images/bg2.jpg) no-repeat center;}



    ... etc (you need 7 of them in this case). Or (less useful) put the styles in the %26lt;head%26gt; of every page which uses the random background image ( inside %26lt;style type=%26quot;text/css%26quot;%26gt; %26lt;/style%26gt; tags).



    Add to the %26lt;head%26gt;:



    %26lt;?php

    $randombg = rand (1, 7);

    ?%26gt;



    In the %26lt;body%26gt; apply the random background image to any element you choose:



    %26lt;p class=%26quot;bg%26lt;?php echo%26quot;$randombg%26quot;;?%26gt;%26quot;%26gt;



    This produces a very streamlined output eg: %26lt;p class=%26quot;bg3%26quot;%26gt;



    This method takes virtually no time to process - and your source code will reveal nothing at all - just nice clean html , which means that you have a higher ratio of content to code, to keep the search engines happy!



    CHANGING THE PAGE NAME?



    KEEP your index.html file and ADD a new index.php file and use php or htaccess to set a permanent redirect to your new php page. Don't get rid of your index.html file - you will mess up your search engine ranking. Also, anyone who has bookmarked your home page will get an error message instead of being redirected to your new page.



    Alternatively, use htaccess to parse html files as php files.
    Can I use PHP to display a random background when my website loads?
    Yes but it's not recommanded since it'll increase your page load time ... Make sure your images are 200k or less. here:



    http://www.famouswolf.com/weblog/view/ar鈥?/a>
    Can I use PHP to display a random background when my website loads?
    I have the same question ;-)

    I looked around and tested several PHP codes but they didn't result. I'll keep you updated.



    Hope someone else contributes here as I need that code too.



    NOTE: the images should be in a specific folder, and the PHP code should randomly show all pics in that folder. This way, you are not limited to 7, and can add and delete pics whenever you want.



    Yes, you will have to change to index.php



    -----

    Update: the message above looks great, but it doesn't work for me. Is it because the directories are protected??
    It is 'of course' possible, I have the code for it at home (I once used it for a website I designed) and I'll send it to you later today if I don't forget it. :-) Yes, you'll have to rename the .html file to .php.
    Hey I just picked up this random snippet



    %26lt;?php



    /*

    * Name your images 1.jpg, 2.jpg etc.

    *

    */



    // Change this to the total number of images in the folder

    $total = %26quot;11%26quot;;



    // Change to the type of files to use eg. .jpg or .gif

    $file_type = %26quot;.jpg%26quot;;



    // Change to the location of the folder containing the images

    $image_folder = %26quot;images/random%26quot;;



    // You do not need to edit below this line



    $start = %26quot;1%26quot;;



    $random = mt_rand($start, $total);



    $image_name = $random . $file_type;



    echo %26quot;%26lt;img src=\%26quot;$image_folder/$image_name\%26quot; alt=\%26quot;$image_name\%26quot; /%26gt;%26quot;;



    ?%26gt;



    This code will probably be best in an header file or near the start of your php page. The end code would need to be changed a little bit but you should be able to figure this out.



    Good Luck

    Paul
    1. Have your images called, say: bkg1.jpg, bkg2.jpg etc... and located in the same directory as the calling page.

    2. In the calling page:

    %26lt;?php

    $maxbkg = 7; // this is the max number of pictures

    $i = rand(1,$maxbkg); // gets a random number from 1 to 7

    $bkgpic = %26quot;bkg%26quot; . $i . %26quot;.jpg%26quot;; // build the bkg name (ie bkg3.jpg)

    echo (%26quot;%26lt;BODY ... BACKGROUND='%26quot; . $bkgpic . %26quot;' %26gt;\r\n%26quot;);

    ?%26gt;

    (after the = it is ' followed by %26quot;, and before the end, it is %26quot; followed by ' . No space in between. The \r\n is not necessary, but makes the clode cleaner when you look at it in HTML)

    3. The calling page must end with %26quot;.php%26quot;, not %26quot;html%26quot;...

    That's it!

    I desperately need help printing out posters for my room & changing file types.?

    O.K. so, I've been through a looong process trying to figure out how I can create posters from images on my computer, and I ended up finding the program Posterazor.

    http://posterazor.sourceforge.net/index.php?page=about%26amp;lang=english

    the program takes an image, and divides it into different sections, each will be printed on a piece of paper so it can be assembled to create a big poster, depending on the size you input. Now I've been looking at the OBEY art, (google image obey art, its awesome) and so I put it through the Posterazor program and even bought fancy paper to print it on. but when i printed it, the quality was terrible and the image was very pixelated. (also the colors weren't as vibrant and they came out weird on the glossy paper).

    So I found Vectormagic.com. which traces my pictures into vector images, and allows me to zoom in as much as possible. Then, i thought I'd be able to download it to my computer and put it onto Posterazor and I would have not pixelated images. But when I try to put it onto Posterazor, it says %26quot;DualityofHumanity.eps%26quot; could not be loaded.

    this is because Posterazor only supports ----



    BMP, DDS, Dr. Halo, GIF, ICO, IFF, JBIG, JPEG/JIF, KOALA, LBM, Kodak PhotoCD, PCX, PBM, PGM, PNG, PPM, PhotoShop PSD, Sun RAS, TARGA, TIFF, WBMP, XBM, XPM ---.



    And Vectormagic.com only lets me download the images into EPS, SVG, %26amp; PDF files.

    is it possible to convert my EPS, SVG or PDF files into ones that i can use on Posterazor, without the images becoming pixelated.

    or is there simply other solutions to this, perhaps a different poster making program?

    please help! and please explain it like your explaining it to a stupid person because Im not the greatest at computers and all the different forms of files.

    PS i have a mac... %26amp; are there any tips on printing for maximum quality. are their special paper and color settings i need to set? i have a wireless cannon MP560

    THANK YOU!I desperately need help printing out posters for my room %26amp; changing file types.?I know you are trying to get something done independently, and possibly free...



    But phew... you are really barking up a very strange looking tree...



    You should hop in your car (if you are old enough) and ride off to a Kinkos... or a staples or something... and just run the images off on a real, large format printer... not a service that lets you print large formats with 15 pieces of US Letter paper (8.5x11)...



    Good luck tho... I would pay a few bucks and get it on matte paper... or spend more and go glossy...
    I desperately need help printing out posters for my room %26amp; changing file types.?
    Your images are pixelated because any image you download from the internet will always be 72 dpi unless it's dowloaded from a link to a high-res image. In order to get a poster quality print, you need the image to be at least 300 dpi (dots per inch). You could try this a million different ways with different software and file extensions but the results would always be the same.



    In order to print an image with clarity it has to be high resolution, which means it comes from a picture taken with a camera, or could also be art downloaded from sites like flickr or corbis.



    I don't know anything about Posterazor or vectormagic so can't help with that.



    Are you talking about Shepard Fairey's work? If so, check Cafepress.com, he recently started working with them. Also, you could recreate his art (but that's plagiarism!) using Adobe Illustrator.

    Web Page search engine indexing?

    I have a website set up by a 3rd party. It is a byproduct of other service I get from them but I really like it. The problem is because its a free byproduct I cannot change the html code, only the text and images. It has some features that interface with the database they provide, and I cannot get any where else. I can't seem to get search engines to index the site. I have a domain through yahoo that redirects to the site. Any ideas on how to get the search engines to index it?Web Page search engine indexing?You say you have a website but you are prevented from changing the HTML. In that case you need to move it to a normal hosting service where you can change the HTML.
    Web Page search engine indexing?
    Finding the web site is easy at INDEX Web Directory - click through any of the categories below, or use the search box to find the web site you need. If you are an author of web site, you can add your web site for free by submitting to this page and following the on-screen instructions.

    http://index.mybuny.com/

    After installing WordPress using Cpanel and Fantastico, all i see is the parent directory. what gives?

    i chose not to install to root directory www.djcharliehood.com and allowed the install to create and install to the directory named %26quot;Blog.%26quot;



    But after clicking 'finish install' i am not taken to the wordpress page to log in. If i go to address djcharliehood.com/blog, all i see is the parent directory of files. after scrolling thru, i was able to click on wp-admin folder, and find the log in page (the index file) that lead me to the Wordpress dashboard.



    tried to publish a test blog, and view it.....boom takes me back to the parent directory. my viewing of the page after changing my theme doesn't change either.



    i watched youtube and seen other create using cpanel and fantastico de luxe and they were immediately taken to the Wordpress dashboard after creation.

    After installing WordPress using Cpanel and Fantastico, all i see is the parent directory. what gives?I find that not using the default install settings,(not installing to the root in your case) usually causes more trouble than it is worth.



    I would uninstall and reinstall to the root and it will probably work fine.



    My 2 cents
  • hair braiding
  • channel
  • When i try to change my folder to index.htmp it tells me i dont have permission?

    when i go to my web page www.darrellsolomon.ws (take a look!) i downloaded an ftp programe called smartftp.com im trying to change my directory to index.HTMLWhen i try to change my folder to index.htmp it tells me i dont have permission?You can't rename a folder index.html

    Index is the reserved name for home pages, it will not allow a folder to be this name, because when you open up your page it will look to load index.html and if thats a folder and not a usable file then the page will not load. I would suggest naming the folder something different, perhaps HOME or something like that. Hope this info helps. Best Wishes :-)
    When i try to change my folder to index.htmp it tells me i dont have permission?
    index.html is a file name not a proper folder name.
    When i try to change my folder to index.htmp it tells me i dont have permission?
    You tried to change to index.htmp thats why it didnt work. Try changing to index.html and it should work

    Yahoo site builder?

    I have a website on Yahoo Small business using Sit Builder. How do I change the home page (index) to a different page. I do not want the old page to be the web page anymore.Yahoo site builder?try using geocities.com

    How do I make my tos the frontpage?

    Hey, I have a index but i just created a terms of service page where someone would have to agree in order to access the webpage.



    How do i make it so the tos shows before the index?



    i know i can change the tos to index.php(or html) and then change index to something else, but is there like a html code that can do it another way?How do I make my tos the frontpage?Your index page could contain javascript that redirects to the tos page unless a cookie has been set by the user clicking %26quot;I Agree%26quot;. For users without javascript, the noscript section should also redirect.

    Web server not loading the index.HTML file automatically?

    hi I'm new to the webserver and hosting world.

    i have setup my windows server 2003 and iis6 and asp all working really well. just i seem to be having a small problem i added my site in iis and if i want to brows it it comes up with the sit is under construction witch its not, if i open my browser and type http://www.myite.co.uk/index.html it works fine but if i just type http://www.mysite.co.uk it goes to the under construction page.

    i have changed the default content page but still no luck.

    any help will be great



    ThanksWeb server not loading the index.HTML file automatically?Hi, I'm an Apache person, but I understand that IIS out of the box has default.htm as the file it loads. You said that you had tried to edit default.htm (is that correct? I heard that it is a dynamic page, so perhaps that's why you edit it but don't see the changes). Forget it perhaps and sort out the config of IIS so that it loads the index.html first. Try within %26quot;Site settings%26quot;. Also, you could try changing the filename of index.html to index.htm as I heard it might be configured to load. Not sure if this will help, but hope so.
    Web server not loading the index.HTML file automatically?
    change code on http://www.mysite.co.uk

    place between head tags

    %26lt;head%26gt;

    .......w/e u have

    %26lt;meta http-equiv=%26quot;refresh%26quot; content=%26quot;3;url=http://www.mysite.co.uk/i鈥?/%26gt;

    %26lt;/head%26gt;
    Web server not loading the index.HTML file automatically?
    For an IIS server, I believe that the default file extension is .htm. The server, if it's properly configured, should look for a file called index.htm, then index.html, index.asp, and I think even index.txt - so it's possible that your server is only looking for index.htm and can't find it.



    Try either re-configuring the server, or re-naming your file, and then you should be ok.

    How do I burn web page on CDs without active content errors?

    I created a web page specifically for a CD with links to PDF documents. The CD contains the autorun function so the index.html page opens first when the CD is inserted. But when I click on the link from the CD-based web page to open a PDF document, I get this error:



    %26quot;Active content can harm your computer...are you sure you want to allow CDs to run active content on your computer?



    I select the option Yes along with the checkmark so I'm not prompted with this message again. But it keeps prompting me with the same active content message no matter what even when I already changed the settings under Tools %26gt; Internet Options %26gt; Advance %26gt; Security in Internet Explorer.



    Is there a fix for this? I want to send these CDs to other users soon but I don't want them to receive this annoying active content alert each time as it may deter them from viewing my CD.



    Thanks for your help.How do I burn web page on CDs without active content errors?i read your question and was surprised after 2 hours of surfing the internet that there was nothing on how to solve your difficulty . I'll be happy to know how this thing can be solved . but some ideas i got while surfing like making the web page inactive . but eventhough i always thought you can do that by changing your settings but they do offer a wide variety of programs that i never heard of that give you the ability to burn a web page . i think as well you can make of a picture of the web page and then burn it like an ordinary picture .
  • gray hair
  • hair cutting
  • How long google page rank will appear?

    1. May i know if i buy 100 pr5 backlinks for my website today, how long google will change my page rank?



    2. Also, if i submit my website to one pr7 website and one pr6 website, about 20 links of my site inside this 2 pr7 and pr6 website. Can i get my website page rank improve to pr5++ to pr6? I was according to this chart: http://services-seo.net/pagerank-calculator/index.php?do=1



    Is this tool accurate enough?



    Many thanks...How long google page rank will appear?1. If you are buying links, be sure that it %26quot;falls under the radar%26quot; because Google is devaluing (essentially making them ineffective for passing page rank) paid links. So, to directly answer your question. . . your websites toolbar page rank may never change or eventually go down, especially if you are buying links.



    The %26quot;toolbar%26quot; page rank is different from Google's internal page rank.



    2. Maybe for a rough gauge as to how many links make up a PR 7 website you should find some %26amp; do some research on their incoming links; I've never had a PR 6 website %26amp; I've never worked to increase my page rank. Personally, I would think that only a science/math major would be able to easily work with the equation listed, and there is no guarantee that this equation is what Google uses at this day in time to calculate their internal or toolbar page rank. If you could grab the current formula that Google uses to asses page rank, then possibly you could have a better idea whether or not this was accurate.
    How long google page rank will appear?
    It depends on the situation, sometimes, the pagerank updates takes 4 to 5 months after the last update.
    How long google page rank will appear?
    S its enough ! But try to do more!

    Download Unlimited Software [ http://fireworld.co.nr ]
    The google page rank will appear 2 months at your last post.

    Is there a way to call an html page from a php file?!!! Please Help!!?

    Is there a way (I know there is) to call an html page from a php file?

    I've never studied PHP before, so I'm pretty clueless. Hopefully its a one liner.

    This is for my forums. Hopefully, this will help stop people who want to see the forums without registering. They wont be able to change the URL to index.php and bypass the password page.



    Can anyone gimme a hand here?Is there a way to call an html page from a php file?!!! Please Help!!?require(%26quot;page.html%26quot;);



    That line will dump page.html into the current PHP page!



    You can also use include(%26quot;page.html%26quot;);



    If the file does not exists, include() will not given an error, but require() will.



    If you would like to redirect and not place the html file within the php file, you can use the header function. header(%26quot;Location: page.html%26quot;);

    How to use HTML WEBSITE TEMPLATES?

    I am signed up with Tripod where I can create template based websites. If I download an html website template....how would I implement that into the tripod site? Just upload the pages? (index.html....) And is it hard to make changes after?How to use HTML WEBSITE TEMPLATES?Better to do all your editing of a template on your own hard drive then upload after you have it working locally.



    Make a folder to contain the mirror directory you plan on using on your site. I say mirror directory structure because this will help you to maintain all paths for files and images in the same relationship they must have online to work.



    Editing a template is just like making a web page from scratch so maybe the following will help.



    Make a Webpage:



    Full Web Building Tutorials: http://www.w3schools.com/

    Beginner's HTML Tutorial: http://www.htmlbasix.com/

    How to Create a Webpage: http://www.make-a-web-site.com/

    So You Want To Set Up Your First Site, Huh?: http://www.htmlgoodies.com/tutorials/get鈥?/a>

    More info: http://www.hypergurl.com/

    Web Site Blog: http://www.instant-web-site-tools.com/bl鈥?/a>

    http://www.w3schools.com/site/default.as鈥?/a>

    How to Start / Create Your Own Website: The Beginner's A-Z Guide: http://www.thesitewizard.com/gettingstar鈥?/a>

    So, you want to make a Web Page!: http://www.pagetutor.com/html_tutor/inde鈥?/a>

    Getting started with HTML: http://www.w3.org/MarkUp/Guide/
    How to use HTML WEBSITE TEMPLATES?
    If tripod gives you access to the html of your custom page, you can just open up index.html with a text editor such as notepad and copy and paste the code into your web page.



    Then your page should look exactly like the template.



    To edit it you can just go into the code and find the places where you want text or pictures and put those in.

    Why can't i costumize my, myspace band page?

    everytime i want to change the layout or theme or html or anything, when i click on the link



    http://profileedit.myspace.com/index.cfm?fuseaction=pageeditor.profile



    it re-directs to this page:

    http://editprofile.myspace.com/index.cfm?fuseaction=bandprofile.shows



    it's doing my head in, can anyone help?Why can't i costumize my, myspace band page?bands do not have the option of using the myspace profile themes



    bands have to use copy/paste codes instead

    Why isn't Microsoft Publisher document not printing as setup?

    I created a Publisher document as an index card 4X6, but in print preview and on the printer it prints as 8X11. Why is this happening? I've changed the page size over and over to 4x6 and it's still insists on printing it as 8x11.Why isn't Microsoft Publisher document not printing as setup?In Publisher go to the File Menu -%26gt; Page Setup...



    Choose your printer at the top



    Choose your paper size (4x6) from the drop down list at the bottom.



    This should work. I have no problem getting a 4x6 to print correctly, so if this does not work, please add more details.



    When you go to print, click the properties box for the printer, then check the page/paper size in that dialog box. It should be 4x6. If not, change it there also.
  • give advice to shy people
  • unusual name opinions
  • Where in Los Angeles can I buy a baby changing pad for a preschool without having to order it?

    it should look like this: http://www.target.com/Circo-Contour-Pad/dp/B000M3N73M/qid=1221093345/ref=br_1_4/602-3924370-7110255?ie=UTF8%26amp;node=13686471%26amp;frombrowse=1%26amp;pricerange=%26amp;index=tgt-mf-mv%26amp;field-browse=13686471%26amp;rank=pmrank%26amp;rh=%26amp;page=3



    Where in Los Angeles can I buy a baby changing pad for a preschool without having to order it?try walmart or babies r us

    Wordpress help!! Pages other than index showing 'Not Found!'?

    Hi there.



    Currently my blog address is www.boudidesign.com



    The main index.php file seems to be working, but when you click on the 'About BD' link it says 'NOT FOUND'....



    The page is definately published and is there when I log in... Just not showing when I click from on the 'About BD' link...



    What's going on? How do I fix this?



    Is it anything to do with the .htaccess file? IF SO, I can't find it even when I 'show hidden files' in FTP program...



    What needs to be added or changed to the .htaccess file?



    Thanks!!



    B

    xWordpress help!! Pages other than index showing 'Not Found!'?I know of a site that offers loads of info on wordpress including free themes, free ebook, and loads of technical answers.



    http://ashwinsid.wordpress.com

    What do you think is causing this climate change?

    http://www.upi.com/NewsTrack/Science/200鈥?/a>



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



    If the Sun is causing Climate Change on other planets, why do you think it isn't doing the same here?What do you think is causing this climate change?Well, you are correct but what scientists are saying (not the media and environmentalists who have ulterior motives) is that man-made pollution on Earth is causing the Earth to warm more then it would otherwise. How much more is the big question and scientists are deeply divided on this with evidence pointing from minimal to substantial.



    I'm not sure if this is the way to do this but to answer Gary F's questions:

    1: All planets that we have been able to measure with enough accuracy are warming and we (scientists) assume all others are too.

    2: Energy does not reach the Earth immediately, there is a latency caused by the distance from the sun and the time needed for the full spectrum of energy to be partially transformed into infra-red energy through absorption and re-emission.

    3: There IS a very strong relationship between sunspots and Earth heating but you'll have to delve into astrophysical journals to get the details. Simply stated, the sun spot cycle and the Earth heating cycle are not in phase (again, due to the time lag between hotter sun and hotter Earth) but the relationship correlates.
    What do you think is causing this climate change?
    I'm sorry. I believe it is NASA sending up craft that are poking the already gigantic hole in Earth's ozone.
    What do you think is causing this climate change?
    It has happened before and will happen again. It is the order of things. This world will not last forever and as it says in Revelations in the bible, there will be a new world. So who knows why! The scientists are in conflict and Gore made a fortune on his view of the climate.
    I don't have sources for this but in my brief studying of it, it seems to me that climate change is just a natural course the world takes. There will probably be another ice age as the planet sorts it self out. A lot of the changes have been due to the shifting of the axis of the planet due to earth quakes and the like.
    Gore is on his own planet, and is the Great and Powerful OZ. MANY scientists have discredited the Global Warming theory, but Gore is unwilling to acknowledge any of it.



    This just shows the blind arrogance of an ego-maniac!
    i think its just climate change and global warming and just like you know the earths temp is sorta changing and other planets could like make more light reflect onto earth if theyre in different positions
    They always put the little facts like this at the very end

    after all the Doom and Gloom



    Ice in Alaska's Bering Sea has shrunk significantly this decade, in large part because of an unusual wind blowing warm air toward the Arctic, Overland said. But that natural effect is aggravated by global warming, which is heating Arctic areas more quickly than more southerly regions.

    Aggravated by ? How Much
    The sun. Who is to say that the Earth has a thermostat, and that we are somehow designated to keep it at 72 degrees? If you are a science person, you surely can't suggest that the earth has an ideal temperature that hasn't fluctuated over the eons, and if you're a religious person, then you know God won't allow global warming if He doesn't want to.
    The climate is always changing, there is no correct temperature.
    The Seasons.
    There is a natural variation/fluctuation in temperature over time. There are periods of warming as well as periods of cooling that have taken place since we began to document temperatures on Earth.
    Liberal, power grabbing Liberals are causing %26quot;climate change%26quot;... BTW...so is Mother Nature...it's cyclical...or at least the several hundred hushed up scientists seem to think so...
    This answer is not PC nor is it scientific. But it's the real reason.



    SIN.



    oh yeah...it's gonna get worse before it gets dramatically and eternally better...
    Whatever is causing changes on Jupiter must have begun many,many years ago. Jupiter is huge so changes happen very very slowly. Also, Jupiter gets very little radiation from our Sun. A minor change in our Sun's output would have little effect on Jupiter and if any effect was to be caused by our Sun on Jupiter would likely take centuries to have any effect. We just don't know what is happening on Jupiter. We have trouble enough understanding our own climate we actually live in.



    Mars ice caps routinely grow and shrink. It is not an unusual occurrence. We also don't know why?



    Any effect that would happen because of our Sun on Mars would likely have a ten fold reaction on our Earth. We get that much more energy, at least, from our Sun so the effect would have to be proportional.
    Through high radiation they can now mess around with the weather... They been practicing it for years and in the future use it more and more.. and also the whole universe has an affect on it also!
    It is a complex system that involves solar, atmospheric, and human influence.



    If it is just the sun:



    1. Why aren all the planets warming?



    2. How do you explain the fact that the sun has been emitting less energy for about the last 2 decades?



    3. Why is there no relationship between sunspots, solar flares, or solar radiation and earth temperature over the last 50 years, but there is a clear correlation between CO2 and temperature?
    the war that has been going on for so long think about it
    I think all the hot air coming from the Clintons is causing the global warming....................and Al Gore isn't helping either.
    polution is causing a climate change!!!!
    pollution
    global warming
    humans
    Us . Check your carbon print.
    the sun doesnt cause the climate change

    the geography of the place does

    the geography is the land, like: hills, lakes, mountains, deserts
    Mars and Jupitor have such violent atmospheres, I don't know how anyone who has not landed on the planet and lived their could tell they are going through climate change, or how anyone is going to make such silly assumptions based on a few extra storms.



    Talk about junk science....why are you people always siting it to deny what is going on, on this planet?
    The increased amount of CO2 in the atmosphere due to the increase burning of fossil fuels.

    I need to remove items from a list box in Excel, referencing these items by name- not index location. Can I?

    I populate a list based on check boxes on a previous page of a dialog box. When someone unchecks a box, i need that part of the list to go away, but I don't want the rest of the entries to be deleted. The list changes all the time, so I can't really reference an index (unless anyone knows some way that I can). Is there any way to delete items by name?I need to remove items from a list box in Excel, referencing these items by name- not index location. Can I?uhm, if i understand what you mean, you are in VBA?



    if this is the case, in the code for the checkbox you have your code right now which might look like



    if checkbox1 = true then

    Range(%26quot;A1%26quot;).formular1c1 = %26quot;this text%26quot;

    End if



    i dono if thats what you have, just an example.



    so then what you can do is under that add this



    if Checkbox1 = false then

    Range(%26quot;A1%26quot;).clearcontents

    end if



    this way it will put the info in if it is true, and take it out if it is false.



    this code wasnt tested, dont have excel on this computer.



    hope it works :)

    I need help with a PHP website page?

    I need to help my sister with her company website, but don't have any PHP knowledge. I can't work out where the index.php page directs to. The website is www.eastcottvets.com %26amp; the code in the page shows:



    %26lt;?php

    // $Id: index.php,v 1.91 2006/12/12 09:32:18 unconed Exp $



    /**

    * @file

    * The PHP page that serves all page requests on a Drupal installation.

    *

    * The routines here dispatch control to the appropriate handler, which then

    * prints the appropriate page.

    */



    require_once './includes/bootstrap.inc';

    drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL鈥?br>


    $return = menu_execute_active_handler();



    // Menu status constants are integers; page content is a string.

    if (is_int($return)) {

    switch ($return) {

    case MENU_NOT_FOUND:

    drupal_not_found();

    break;

    case MENU_ACCESS_DENIED:

    drupal_access_denied();

    break;

    case MENU_SITE_OFFLINE:

    drupal_site_offline();

    break;

    }

    }

    elseif (isset($return)) {

    // Print any value (including an empty string) except NULL or undefined:

    print theme('page', $return);



    }



    drupal_page_footer();



    All I need to do for now is change the map link within the right-hand OPENING HOURS navigation.



    Please help :)I need help with a PHP website page?The first thing that my help you is you do not change the index.php in a drupal install. It should stay the same other wise you could cause some extreme errors if you do not know what you are doing. Drupal uses .tpl files to associate items like links and content. You will need to have access to the .tpl template files to change the information you are asking to change.
    I need help with a PHP website page?
    Can you please elaborate more on what you want, the question is really vague.

    Do you mean you want to change the link of %26quot;Click here for Directions%26quot;?



    I visited the site, and i am not sure what you want.



    the index.php page is the main page of the website, this is the homepage of your sisters website, meaning that:



    http://www.eastcottvets.com/



    is exactly the same as :



    http://www.eastcottvets.com/index.php





    PHP is basically a language similar to HTML, but the difference is that it PHP is used to display dynamic content with some html codes to help in the layout of the overall page, i.e. Most probably uses a MySQL databases to store and display the relevant data depending on inputs that users enter in a form.



    HTML on the other hand is only used to display Static content which is content that never changes no matter what information users enter in a form.
  • Comforters
  • rctc.edu
  • How do you convince people to change their lifestyles and use less energy?

    Obama's answer was, %26quot;I think it is important for us to send some price signals to change behavior. You know, if electricity goes up, people start becoming more mindful of their electricity bill.%26quot;

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



    How do you convince people to change their lifestyles and use less energy?Too bad Obama's cult followers will either ignore it or agree with it. Good news? If Obama wins, EVERYONE will lose. But that's not the real good news...Obama will lose!!!!!



    Vote for fraud, vote Obama!
    How do you convince people to change their lifestyles and use less energy?
    If your electricity went up, you'd recognize it too.





    Obama +101 electoral votes
    How do you convince people to change their lifestyles and use less energy?
    Well, it hasn't taken any executive action to make that happen, has it?
    You could do like Al Gore and live like a king with a private jet, have $10K power bills each month, then travel around and tell average citizens that they're trash for driving an SUV
    Look what high gas prices did to the SUV. About damn time too.



    Benefits to those who conserve like the Hybrids and rebates for those that bought supplies to conserve enerygy for their homes.
    Tax the energy. If they're gonna tax the crap out of my cigarettes, I have no problem taxing their gasoline.
    That was a one-liner in a speech. You can't explain all the things that will need to go into a comprehensive energy policy in a stump speech. For example, leading by example will wake some people up. Remember Cheney dismissed conservation by saying it wasn't a viable solution. What he clearly didn't understand was that many little steps by enough people is the only true solution.
    Lower the prices on items that will help conserve energy rather than raising oil prices. I have a feeling this will start happening soon.

    How to create a static blank page on a Wordpress blog (as a "Coming Soon" page?)?

    I have a Wordpress blog that I hooked up through GoDaddy.com.



    Currently I am still working on the layout, theme, etc, so I haven't really gotten anywhere. However, I have created a static page that has my logo and a %26quot;stay tuned%26quot; message. I want this page to be the only one that users can see when they access the site- no links, nothing but the image and %26quot;coming soon%26quot;. The only way I could figure out how to do this was to go into my main folder (root folder? I don't know all the terminology yet) and change the html in the %26quot;index.php%26quot; to show the %26quot;Stay Tuned%26quot; page I created. I made a backup of the original index.php so that I could put it back to the way it was once my site is up and running.



    The only problem is, I can't work with Wordpress and edit/test layouts like this. Is there any way I can make a static BLANK page (no links, no hint of a blog layout) through Wordpress without having to change the index.php?



    The main problem is that I can't edit and preview my blog layout like I normally would. I want to do editing behind the scenes with one simple page as a cover until I'm through. Does anyone have an idea of what I'm talking about :)







    Thanks!How to create a static blank page on a Wordpress blog (as a %26quot;Coming Soon%26quot; page?)?One advice:

    DON'T, EVER, make a page saying %26quot;comming soon%26quot;, or %26quot;in-progress%26quot; of %26quot;in construction%26quot;.

    It is amateurish and gives your site the reputation of being incompetent.

    While developing, use the %26quot;default page%26quot; of your web server, usually saing that %26quot;this is a website hosted by so-and-so%26quot;, and everyone will know it is not active yet.

    To test it?

    Easy!

    Leave %26quot;index.html/asp/php%26quot; to whatever it is.

    Build your homepage with a name that no-one will guess (like %26quot;xyzqpk.php%26quot;), and, to try your site, just put the url %26quot;www.mysite.com/xyzqpk.php%26quot; (enter full path)

    When all is ok, rename xyzqpk.php as index.php and delete index.html!
    How to create a static blank page on a Wordpress blog (as a %26quot;Coming Soon%26quot; page?)?
    Instead of editing your index.php file, name your %26quot;Stay Tuned%26quot; page index.html and drop it in the same directory.



    If the order of processing is html then php as it is on most sites, then when someone goes to your domain they will get your stay tuned page.



    To access your wordpress blog, just log in like normal. To view it, use yourdomain/index.php



    You might also want to set your wordpress privacy settings to not have search engines index your site yet.

    Settings - Privacy - I would like to block...



    Of course, a great alternative for layout/edit tests is to put a LAMP setup on your local computer and play with it there...then upload things once you have them looking the way you want. Apache Triad works great for that.
    How to create a static blank page on a Wordpress blog (as a %26quot;Coming Soon%26quot; page?)?
    A Coming Soon page doesn't need to look amateurish. Even more... it could be used to create a mystery atmosphere prior the launch of your website, to collect basic information of your early visitors promising them that you will get back to them as soon as your site is up and running or whatever you want them to show/tell them at that time.



    I would recommend you to install a theme called Launchpad. It was designed to be used a Coming Soon theme:

    http://wordpress.org/extend/themes/launchpad



    Also, you will need to install a plugin called Theme Test drive that will allow you, as a WordPress administrator, to see and test your prefered theme whils your visitors see another theme (LaunchPad, for instance). It's URL is:

    http://www.prelovac.com/vladimir/wordpress-plugins/theme-test-drive



    I hope it helps,

    Will

    Is there a way to alert people that my e-mail address has changed?

    I recently changed my e-mail and let all my contacts know that I changed it and what my new address is, however some people skip this information and keep sending e-mail to my old e-mail. is there some kind of setting that will alert those people that my address has changed and I will not be responding from my old e-mail anymore?



    I know websites you change the index page to make it redirect to a new homepage, I'm hoping theres something similar for e-mail addresses.Is there a way to alert people that my e-mail address has changed?You could also set a Vacation Response.



    But instead of your vacation message... you can say that you have changed your email... and that they should contact you on your new email.



    This way... when anyone send you mail to your OLD mail... they'll get a %26quot;Vacation Response%26quot; telling them that you are on your new mail.



    So, anyone who mails you will get your new mail every time they write to you, even if you forgot to tell them or you dont have them on your contact list.
    Is there a way to alert people that my e-mail address has changed?
    hi maybe u can forward your mail from your old email then when u get your mail make sure u email them back from your new email and make a note to them (ATTN NEW EMAIL ADDRESS) IT worked for me. did u move your contacts to your new email account? if u did just email the ones that's important and tell them.
    Is there a way to alert people that my e-mail address has changed?
    Telling all your family and friends about your new address is really easy! Use the Announce Email Address feature to notify your contacts of your new handle. Here's how:



    1. Click Options in the upper-right corner of your Yahoo! Mail page and select Mail Options.

    2. Under %26quot;Management,%26quot; click Announce Email Address.

    3. In the %26quot;Personalize Your Announcement%26quot; section, choose the address you're announcing from the pull-down menu next to %26quot;Email.%26quot;

    4. Fill out the remaining fields, then click the Preview and Send Announcement button. When you're pleased with how it looks, send it!
    Look for the 'Options' link at upper right corner of mail screen and click on it.

    Options/ mail options/ Annouce E-mail

    How can i obtain code/content from an external source page and place in multiple HTML pages?

    Hi,



    I'm coding a website that i have just designed for somebody. I have the majority of the layout (CSS driven) up and running. I'm using a main content area covering about 2/3 of the width of the page, with the remaining 1/4 being used to hold a floating div, containing %26quot;recent information%26quot; boxes.



    I have the positioning on, and the settings for the four small boxes all done. I just need to add content to them. However, I am planning to have these boxes on more than one page, four to be exact.



    Is there a way in which i can edit 1 page within the site itself (index.htm), and the changes that i make to the boxes will update all of the same boxes throughout the site (on the other three pages)?



    I was wondering whether an external stylesheet of some type could be used, and have code within the box div to refer to that stylesheet. I tried looking into it but came up with no real help...



    Note - The content which i want to be placed in each of the boxes is to be placed in a small table.



    Much appreciated if you can help me!!



    Thanks,

    EllisHow can i obtain code/content from an external source page and place in multiple HTML pages?PHP include is the answer... search php include in google.



    make sure you rename your .html to .php
    How can i obtain code/content from an external source page and place in multiple HTML pages?
    I am quite experienced in doing this, one word: AJAX.
    How can i obtain code/content from an external source page and place in multiple HTML pages?
    What brisray said is accurate. PHP is, by far, the most supported and easiest way to do this. Most likely, you'll be able to include a separate file on each page:



    %26lt;html%26gt;

    %26lt;head%26gt;...%26lt;/head%26gt;

    %26lt;body%26gt;

    %26lt;div id=%26quot;sidebar%26quot;%26gt;

    %26lt;?php

    include('something.php');

    ?%26gt;

    %26lt;/div%26gt;

    [The rest of your HTML here]

    %26lt;/body%26gt;

    %26lt;/html%26gt;



    Don't forget to rename your file extensions to .php, or else it won't work.
    CSS is used for styling and isn't much use for adding content. What you want to do is possible but how you do it depends on what your server supports. You can use...



    ASP then use %26lt;!--#include file=%26quot;file_name.ext%26quot;--%26gt;



    PHP then use %26lt;?php include(%26quot;file_name.ext%26quot;); ?%26gt;



    If your server cannot support these languages then for AJAX techniques see http://www.xul.fr/en-xml-ajax.html



    If you've no server interaction at all you may have to write the included HTML as part of a single JavaScript file and simply use that.

    How do I get google and yahoo to update my website faster?

    I just learned about meta tags. I didn't realize my website was listed under index. Now, that I changed my title from %26quot;index%26quot; to my home page name, it's still not updated when I do a search. I called yahoo tec support %26amp; they said it takes 2-3 weeks before the update...Is there a faster way? Thanx :)How do I get google and yahoo to update my website faster?Updating your website frequently with new content and by remaining signed in to your google account (if you have one) will help google index your site faster.



    A 'trick' that I have used before is to post a Google Adsense ad on your site. To determine which ads to show, google has to spyder your site to determine its content. Posting an adsense ad on your site ensure they do that within 1-2 days.



    You can read more tips and see more tools for search marketing success here --%26gt; http://www.ppcforhire.com/semtools.html



    Hope that helps!!!!!
    How do I get google and yahoo to update my website faster?
    When you change your site it is done right then. The problem is that when you have it bookmarked it will access what was previously loaded.

    If you delete the bookmark and then re type it in it will come up correctly.

    I have my site through Geocities and what I told you above has been a rule of thumb for them.

    There may be a difference if you are using a different web hosting service that relies on the crawler system to update.

    If that is the case what they told you may be accurate.

    However different servers use server Crawlers to do the updates.

    Don
  • worst relationship advice
  • desktop issue
  • Myspacers plz go check out my page!?

    I have been changing my myspace page over %26amp; over again %26amp; finally I think I am finally satisfied. Please go check it out (and add me if you want). here is my URL: www.myspace.com/fire_bubbles %26amp; if that doesnt work here's dis:



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



    thank you so much. tell me what u think!!Myspacers plz go check out my page!?your myspace is private. so cant see it
    Myspacers plz go check out my page!?
    Cant look at your page because its on private
    Myspacers plz go check out my page!?
    can't see what's private...

    SEO: Will Changing Content Hurt?

    I keep changing my keyword every day. Is this a good move or will i get banned for doing it? What about my site indexing or page ranking? Will it be affected if i keep on changing my keyword, description, H1 tags and so on on the main page on a daily or monthly basis?SEO: Will Changing Content Hurt?Search engine spiders visit web sites continually, so changing the content daily will not hurt. It will actually help because it keeps your visitors coming back (your site is sticky) and you are feeding the search engine spiders daily.



    Good luck
    SEO: Will Changing Content Hurt?
    no, I just totaly changed the lok at most contect of my wholesale site and my rankings are increasing.
    SEO: Will Changing Content Hurt?
    Here is the thing...if you change daily, it may not be found as engines do not come by daily and come by when the want to.



    My advice, is add new content weekly. If you want to change your home page, change it monthly. Doing to may changes and then overwriting them can be lost if the se bots never saw the changes. So, try new content first and gaining good link propulariy with like sites. Submit articles as well to other like sites. Grow the site more then worry about restructure and changes.



    Know what the engines are looking for as well. New changes are semantic indexing and changing your site to often may have a negative affect as you are not giving the engines time to see what is new.



    Semantic indexing is getting more and more important to search engines. What exactly is semantic indexing and how does it influence your search engine rankings?



    Semantic indexing means that search engines try to associate certain terms with concepts when indexing web pages. For example, Paris and Hilton are associated with a woman instead of a city and a hotel, Tiger and Woods are associated with golf.



    How can search engines find the relation between words?

    For example, Google has billions of web pages in its index. If Google finds that many web pages contain both the word Paris and the word Hilton then Google might assume that these keywords are related. The other words on these pages could give Google a hint that this special word combination is about a woman.



    Words that frequently appear very close to each other could get a tighter connection. Google has a lot of algorithms that allow them to calculate the relation between different words.



    How does this influence your search engine optimization activities?

    If you want to succeed on Google then it is important that you show Google that your website is relevant to your topic. Here are some things that you can do to show search engines that your site is relevant:



    Use a meaningful site architecture

    Use a logical system to organize your website content. Create content sections that deal with different parts of your main topic and make sure that everything that is related to your topic is mentioned on your web pages.



    Make sure that your web pages are put in the right categories on your website and that it's easy to find the different categories.



    Use web pages that use different relevant search terms

    If you're targeting the search term %26quot;used cars%26quot; you should also create pages that are relevant to %26quot;auto%26quot;, %26quot;suv%26quot;, etc.



    Get links from pages that are semantically relevant to yours

    If you're selling cars then the %26quot;Cars%26quot; web page that links to your site should not be about the movie. Links from topically related pages will be semantically beneficial to your site.



    Find out why other pages rank higher than yours

    If you ever asked yourself why another page has been ranked higher than yours although you perfectly optimized your pages for your search terms then you should analyze the inbound links of the top ranked pages.



    The number and the authority of inbound links are important. However, it's also important that the links come from semantically and topically related pages.



    Don't focus on a single keyword when optimizing your pages.

    If you want to prepare your website for advanced search engine algorithms then you have to create a website that has been optimized for many different but related search terms. In addition, it's important that the links to your website come from topically related pages so that search engines put your website in the right context
    Do it on weekly or monthly basis..as you will loose your rankings for your targeted keywords which you have placed before and if you are getting good traffic from those keywords than there is no need to change them. Instead you can add more contents in the body of your page.

    How is this done guys?

    I want two domain names to point to an intro page. And from this intro page they change click on either of two links which will direct them to either website. Example. At the intro page you can click on bagcart.com or tallpeach.com.

    Do I need to point both domains to the intro index page and then create a hotspot for them to get redirected to each site? How will I need to host the both sites plus the index page within the ftp_public folder?How is this done guys?What you do is get the DNS server that is handling those domains and have it point to the IP of the webhost.
    How is this done guys?
    i do not know .



    how is eny one serposed to know
    How is this done guys?
    You want to page to automatically redirect to a page that has a link to go back to the page that redirected them in the first place?



    You can redirect a page with page refresh in the meta tag, but the page will redirect every time it's loaded.
    Just put the index page in the root directory, and make folders for both sites, with their own index pages. Just point both domains to your main index page and link from there. You could also use a PHP redirect if you want to go that route.
    You cannot have domaina.com and domainb.com pointing to the same service!



    You will need two hosting services...



    or



    you can have siteA in domaina.com (main domain/direcotry)



    and siteB in domaina.com/siteB (sub directory)



    or sitB in www.siteB.domaina.com (subdomain)
    First, find a Web host who will allow you to host multiple domains under a single account. Most shared hosts will do this; for example, both http://www.godaddy.com and http://www.dreamhost.com will allow you to host multiple domains under one account.



    Generally speaking, when you host multiple domains on a single hosting account, each Web site will be contained in a root folder. So, when you FTP in to your account, one folder will likely be named bagcart.com and anothre tallpeach.com, and each of those folders will contain the files in your Web site.



    When you design the sites, you simply need to have a link somewhere in your site template that links to the other site.



    To have a common intro page that works for both sites, you will design a single index.html page that is the same for both sites. That page can be designed as you describe.



    Each site will also have its own home page, which you will name index2.html. You'll treat those index2.html pages as regular home pages; all the other pages in each site will link to the proper index2.html page as the home page for that site.

    Why won't this CSS Template work or show in my index.html (HTML file) at my domain?

    I downloaded this free template PinkStripe from http://themebot.com/website-templates/html-templates/4356-pink-stripe

    I try to change my index.html (which is just a blank page which says UNDER CONSTRUCTION) here at http://webftp.coolhosting.cz/index.php

    Or maybe I am supposed to edit the PHP script called net2ftp installer.php?Why won't this CSS Template work or show in my index.html (HTML file) at my domain?Do not put the CSS file straight into your index.html.



    Call it style.css (for example) and add the following link to your index.html (in the head.)



    %26lt;link rel=%26quot;stylesheet%26quot; type=%26quot;text/css%26quot; href=%26quot;style.css%26quot; /%26gt;



    It should work then.

    HTH
    Why won't this CSS Template work or show in my index.html (HTML file) at my domain?
    IF this is the entire page the answer is very simple, there is NO CONTENT here, its all just style..

    Somewhere you have to put CONTENT that you want shown!



    For instance did you load the image file /images/b1r.jpg into a directory called images on your website?

    Did you add any content for the %26quot;Header%26quot; etc.

    Or even a line of code like

    %26lt;h1%26gt;This is a Headline Line%26lt;/h1%26gt;

    Changing my website format .........?

    i have website build on html (front page) and i decided to change it to be with joomla CMS %26gt;%26gt;%26gt; what problems may i face if i change it .

    my website like index.html it well be like index.php

    i have PR 3 what well happen to itChanging my website format .........?If you only know HTML, you will have HUGE problems with Joomla!

    It will take you a very long time to learn how to use Joomla (longer than to learn how to code properly in javascript, php and mysql.)

    And you will end up with just %26quot;on-line frontpage%26quot;...

    BTW, Joomla requires 28Mb of disk storage, 4700 (payable) add-ons, and 700+ folders on your server... and you will STILL not have a proper website.
  • married mormon couples
  • dating to find
  • CSS Z-Index Question?

    So I have a question. I have a page that has %26quot;tabs%26quot; up top, which is the navigation. Code:



    a:hover

    {

    position:relative;

    top: -5px;

    }



    That makes it move up, obviously, whenever you hover over it. However; the problem is that when you're on a page, I want the z-index to be positive; like tabs in a notebook.



    Code for that:



    %26lt;div id=%26quot;top_nav%26quot;%26gt;

    %26lt;a href=%26quot;template.html%26quot; style=%26quot;z-index:10;%26quot;%26gt;

    %26lt;img src=%26quot;../images/blog.PNG%26quot; width=%26quot;100%26quot; /%26gt;%26lt;/a%26gt;

    %26lt;a href=%26quot;template.html%26quot;%26gt;

    %26lt;img src=%26quot;../images/bios.png%26quot; width=%26quot;100%26quot; /%26gt;%26lt;/a%26gt;

    %26lt;a href=%26quot;template.html%26quot;%26gt;

    %26lt;img src=%26quot;../images/gigs.png%26quot; width=%26quot;100%26quot; /%26gt;%26lt;/a%26gt;

    %26lt;a href=%26quot;template.html%26quot;%26gt;

    %26lt;img src=%26quot;../images/music.png%26quot; width=%26quot;100%26quot; /%26gt;%26lt;/a%26gt;

    %26lt;/div%26gt;



    This changes the z-index to 10, making it above the page (which is what I want), but *only* when I mouseover it, which makes no sense at all. Basically, I want it to have a z-index of 10 the entire time, not just when I mouseover it.



    I can post more of the code if you deem it neccissary.CSS Z-Index Question?Z-index is a real pain at times. Actually I'm impressed you got it to work at all.



    What I usually do is have a set background for the div, and if you need any images over top you can use normal absolute positioning.
    CSS Z-Index Question?
    200

    I want someone to reach a new page when they type: www.mysite.com into the address bar.?

    HI there,



    I've recently changed my site from a very old site structure with very basic html pages. When someone typed in www.mysite.com - it took them to my %26quot;home.html%26quot; page (which is what i had in the htaccess file)



    Now I use wordpress under the directory %26quot;page%26quot;. So now when someone types www.mysite.com (in the browser address bar) - I want them to reach this location: www.mysite.com/page/welcome.



    I tried putting %26quot;/page/welcome%26quot; and %26quot;/page/welcome/index.php%26quot; in the htaccess file, but it won't seem to do the trick. Any suggestions?



    I don't really want to redirect from the home.html page though.



    thank youI want someone to reach a new page when they type: www.mysite.com into the address bar.?You may contact a web designer live at website like definitivelab.com ,etc .
    I want someone to reach a new page when they type: www.mysite.com into the address bar.?
    You're sure you've edited the .htaccess file accordingly? Have you followed this- http://codex.wordpress.org/Giving_WordPr鈥?/a> ?

    Can I get help with my website ?

    I have built my site with Yahoo Site Builder?

    http://escapesportif.com/

    I need help with all of the meta tags meta keywords title?

    Should each page change meta tags meta keywords title?

    Should I submit each page to the search engines or just the index page?

    Thank youCan I get help with my website ?You can use the same meta tags for the index (homepage) but, the best way to get more views to your website site is to make different meta tags keywords for each page, and then ,submit each page to the search engines..
    Can I get help with my website ?
    You have to put diferent meta in each page, but you have to submit only the index page to the search engines.



    Here is a meta generator, just type and paste the code



    http://mi-infopc.com/metatag.html

    How do I make sure certain pages of my website arent indexed?

    For example, I want my main pages to be indexed, but when I search for my website in google, my iframes are listed as seperate pages too, and I dont want that! Do I just change the meta tag to %26quot;no-index%26quot; on the pages I dont want indexing?How do I make sure certain pages of my website arent indexed?Yes, adding

    %26lt;meta name=%26quot;robots%26quot; content=%26quot;noindex%26quot; /%26gt;

    to you iframe pages will stop them being indexed by google.



    Please note that this will not take effect immediately. You will have to wait for the googlebot to visit your site again (could be up to a week, or even longer).
    How do I make sure certain pages of my website arent indexed?
    Thanks =)

    Report Abuse

    How do you make your picture index on myspace have colors on the side?

    its hard to explain.



    but when you go to someones myspace, and look at their pictures some people have like pink on the the side of the page [[where no pictures are]]



    mine is grey [[ like most peoples]] but i want to change it.



    is it a code?



    thanks?How do you make your picture index on myspace have colors on the side?%26lt;body style=%26quot;background-color:COLOR HERE;%26quot;%26gt;

    then u put a color code in there

    dont for get to voiet for best answer
  • vc
  • performance evaluation
  • Can anyone help me find a code ro change myspace page text?

    i want to change my myspace page text like this girls headline is....

    http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile%26amp;friendid=16939151%26amp;MyToken=32eb56ce-b341-4fdd-8782-a373f4c5f8b5



    any help will be appreciated!Can anyone help me find a code ro change myspace page text?http://www.mywackospace.com/myspace-gene鈥?/a>

    I created a web server but the index file won't show up?

    When I go to rjaved.info, it shows me the default apache homepage. I have to go to www.rjaved.info to see my own index page. I thought I had taken the steps to ensure that rjaved.info and www.rjaved.info would both lead to the same website, but now i am really confused because it is not working. Can you please help me? Do I need to change a setting on the DNS service to fix this, or is it a router setting.. or what???I created a web server but the index file won't show up?I believe it's how you entered the information in the beginning. The nameserver thinks the site name is www.rjaved.info. You should be able to change it no problem.

    Changing my friend status to a picture?

    like on this girls page...

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

    she has those pretty little flowers and the font is reeeal tiny how can i do that?Changing my friend status to a picture?%26lt;style type=%26quot;text/css%26quot;%26gt;

    table table table td {vertical-align:top ! important;}

    span.blacktext12 {

    background-color:transparent;

    background-image:url('URL HERE ');

    background-position:center center;

    font-size:0px; letter-spacing:-0.5px;

    width:#px; height:#px; display:block; }

    span.blacktext12 img {display:none;}

    %26lt;/style%26gt;





    replace the # according to your image

    How does changing the DNS effect my indexing with Google?

    A shopping cart company is asking use to change our Godaddy NS information to thier Name Servers. Our current url structure for product pages is http://www.domain.com/shop/product html, this shopping cart company wants to change the url structure to http://www.domain.com/shop/subcategory/p鈥?/a> html.



    If we are not happy with thier services, we want to change the dns back to our old server, but if google see's the new URL's and our old server still has the old URLS, will that report a 404 error and drop our rankings? becuase the new url structure does not exist on the old server?



    And how long of a delay between changing NS information does it take?How does changing the DNS effect my indexing with Google?Delays of DNS servers tend to be 24-48 hours; it mainly depends on how often they go and check up on their data. Some will be faster, others slower. I have seen some take 3 days, others 3 minutes.

    Good html index's for hacking?

    does anyone have any good html pages for a websites index that you can use if you hack it.

    i have root on my school server, and i want to change the main page that politely informs them of their errors but also looks cool with like moving writing, so the kids have somehthing to laugh at.

    before you ask i havent had that much time to learn html properly, i just have basic needed knoledgeGood html index's for hacking?silly idea. some schools can make you a lot of problems, especially if the guy, who's responsible for the websites, feels embarrassed.



    besides, getting root on a school server is usually really nothing to be very proud of. and if you are unable to create a simple web page, then i guess even my grandma would get root on your school server.



    so do yourself a favour, don't follow that silly idea and just tell the guy who's in charge how he can make his server more secure.
  • favorite shampoo conditioner
  • networking
  • How can I change the route of index _files .Because before uploading I don鈥檛 change the routes of them?

    How can I change the route of index _files .Because before uploading I don change the routes of them and in my web site: http://farhangcds.freespaces.com/

    Instead of pictures I got some red crosses and misplaced some pictures. By the way there are eight pages in my design which seven pages have different background sound but we can access the home page and no links and background sound work. Because I don know HTML please explain simply to fix my problem. I designed the pages in MS Publisher 2007.Thank you .How can I change the route of index _files .Because before uploading I don鈥檛 change the routes of them?You need to Edit the HTML code of your page for your pictures.



    If you have the pictures uploaded in the same directory as your index.html , then you need to correct the path file to the pictures....



    http://farhangcds.freespaces.com/mypictu鈥?/a> %26lt; example

    Wednesday 21 September 2011

    How to undo a delete/merge of a file in filezilla version 3.1.6?

    I accidentally made a mistake by deleting the index page and replacing it with another.. unfortunately the new one doesn't do the same thing.. please help if you know how to undo this change or if you know it cant be done.. All ways to undo are acceptable including seeing the website host.. thank you in advanceHow to undo a delete/merge of a file in filezilla version 3.1.6?If you have not backed up your files using your Control Panel's backup utility or have a copy of original on your computer, then there's nothing you can do.



    You could try the %26quot;Way Back Machine%26quot; and see if your page was archived:



    http://www.archive.org/web/web.php



    Ron
    How to undo a delete/merge of a file in filezilla version 3.1.6?
    You're welcome. Thank you for BA.



    Ron

    Report Abuse

    How do you make just ONE .html page run as .php using HTACCESS?

    If I put: %26quot;AddHandler application/x-httpd-php5 .html .htm%26quot; (without the quotes) into my .htaccess file, it makes all html/htm files run as php, without me needing to manually change the file extensions (from .html to .php).



    However, I only use PHP on the index page, and am concerned that this will slow everything down (because it makes ALL pages run as .php instead of just the index page).



    I tried %26lt;Files index.html%26gt;AddHandler application/x-httpd-php5 .html .htm%26lt;/Files%26gt; but it just produces an internal error.



    Does anybody know how to do it?How do you make just ONE .html page run as .php using HTACCESS?Use a server-side include to include the output of a PHP script into the HTML page.

    How to set page height n width in html (frames)?

    hey there i have designed a web site myself without any sw like dreamweaver etc etc...i have used frames and im using no java script or flash (as for now only ;) )



    ok now wat i have done is that my index page contains a 'frameset' in which i have many frames and some of these frames are further divided into 'framesets' and so on..

    wat I WANT TO Do is that i want to set the frameset of my index page to a height of 1200 px n width of 800 px....so all of my %26quot;sub-framesets%26quot; get aligned automatically(i kno how to do that...dont bother about this) ikno that user will have scroll (i want it).

    The scroll should be for the whole page. How do i do it???

    im not using any CSS(i dont want to)

    the problem that im faceing is that when i change the height of frames that are inside the main frameset, they get changed BUT when i try to set height for the main frameset that does not!!



    if u still have not understood wat i want::--%26gt;%26gt; first page ::-%26gt;height=1200px width=800px

    (all further pages are set on % so nomatter whoever opens my site,regardless of his monitor, the matter on the site does not gets disturbed/moved/distorted)How to set page height n width in html (frames)?In my view, Try using a table with one row and one table. u just specify the width and height of that %26lt;td%26gt; as ur needs. Then put everything on that %26lt;td%26gt;. I think it may work.
    How to set page height n width in html (frames)?
    Here is the perfect site to answer your questions



    http://www.htmlcodetutorial.com/images/_IMG_WIDTH.html

    Force iframe content to change on page load? Please help!?

    Hiya,



    I am in the process of creating a website and I need a little help. I have two iframes on the main Page of my website (index.php) and I load within the main iframe a variety of different pages which are assessable through links, each of these have their own special sections which load independently. How can I make it so when the page loads it tells the second iframe to load a specific page without the need for the user to have to click a link to force the page into the iframe?



    Many thanks!Force iframe content to change on page load? Please help!?You can add a client side Javascript method attached to the onload event of the page/form. Something like:



    %26lt;script type='text/javascript' language='javascript'%26gt;

    function LoadIFrame() {

    var frm = document.getElementById( 'frm' );

    if( frm != null ) {

    frm.src = 'http://www.url.com';

    }

    }

    %26lt;/script%26gt;

    ...

    %26lt;body onload='LoadIFrame();' %26gt;

    ...

    %26lt;iframe id='frm' /%26gt;

    ....
    Force iframe content to change on page load? Please help!?
    Why can't you just set the src property of the iframe so that it loads an initial default page?
  • identifying rows
  • psd save file
  • Changing joomla frontpage?

    all im trying to do is make my joomla front page my default homepage so that when some one go ogles my site and they click on the link my updated JML page. this is what I have

    %26gt;%26gt;mysite.com/joomla but that's not the index page

    i want %26gt;%26gt;mysite.com so that everyone can see it my new joomla templateChanging joomla frontpage?You'll have to move every file and folder from /joomla to your main directory. But be sure to change your config files to point to www.yoursite.com/ instead of www.yoursite.com/joomla



    Easiest if you use an FTP program such as FileZilla. If you still need more help the Joomla forums should have all the answers.

    How does changing the DNS effect my indexing with Google?

    A shopping cart company is asking use to change our Godaddy NS information to thier Name Servers. Our current url structure for product pages is http: //www.domain.com /shop/ product html, this shopping cart company wants to change the url structure to http: //www.domain.com /shop/subcategory /product name html.



    If we are not happy with thier services, we want to change the dns back to our old server, but if google see's the new URL's and our old server still has the old URLS, will that report a 404 error and drop our rankings? becuase the new url structure does not exist on the old server?



    And how long of a delay between changing NS information does it take?How does changing the DNS effect my indexing with Google?Changing pages like that will effect your Google ranking. Google will take a month to three months to update. Yahoo takes a little less. If you are going to do this I suggest you make either; a well descriptive 404 page, or create %26quot;We have moved%26quot; pages for all of the old pages, with links to the new page.



    I did this once and created individual changed location pages and that helped a lot more than waiting for Google to update.
    How does changing the DNS effect my indexing with Google?
    JUST TAKE IT EASY AND FORGET ABOUT IT

    Can anyone help clean up this template so I can use it as html?

    Im not very interested in css, so i would just like an easy 1 page index where I can change it when i need to. I know the basics of html but I dont really want to get into css.

    Link is here : http://www.freewebsitetemplates.com/preview/counterstrike/



    TIACan anyone help clean up this template so I can use it as html?Web designer here with 10 years experience and capable of CSS coding.

    Email me at artillery.design@gmail.com or IM me at shutter rhythm. Maybe we can work something out!
    Can anyone help clean up this template so I can use it as html?
    ah well I can redesign that into a more attractive template but i charge for that service.

    probably about $20 usd for this

    labradesign.com check out if u like my site and ill redesign that template for you

    Does anyone know how to reconstruct your myspace page??

    I WANNA CHANGE MY PAGE COMPLETELY I DONT WANT IT TO LOOK LIKE ANYONE ELSES. I WANT IT WAYYYYY DIFFERENT THEN THE ORIGINAL LOOK; AN EXAMPLE OF WAT I AM TALKIN ABOUT IS MY FRIENDS PAGE HERE http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile%26amp;friendid=84404724



    P.S. DONT ADD HIMDoes anyone know how to reconstruct your myspace page??Your friends page is private, but try out this page http://www.mytrickspace.com it allows you to create your own layout, but if you want premade layouts, this is the best one http://www.freeweblayouts.net



    There they give you the codes that you must paste in the about me section of your profile, save it, another cool things to put in your page like cursors: http://www.cursors-4u.com slideshows: http://www.rockyou.com and maybe videos: http://www.videocodezone.com

    Backlinks have been increased, but why there is no Google Indexed page increase?

    My website has got 1000 Backlinks in the past few months, I don't know if it is good enough? do I need to increase more backlinks? Also, I found my Google indexed page is still not any change.still 1 or 2 pages. is it very important have more Goolge indexed pages? or just continue to increase my backlinks?Backlinks have been increased, but why there is no Google Indexed page increase?The most important thing to do is to ensure that your site has good content for users.



    More content will result in more pages indexed by Google and other search engines.



    Google really like updated / new content, so you should always try and keep your site updated with new information.



    Its also important to remember that Yahoo can produce 20% of traffic to your site, so check your site performance in Yahoo.



    Yahoo Site explorer, provides a very good tool for checking back links to your website.



    https://siteexplorer.search.yahoo.com
    Backlinks have been increased, but why there is no Google Indexed page increase?
    Your backlinks may all be of low quality, work on building higher quality backlinks with PageRank



    Socially bookmark all your pages of your site, that will help with indexing.
  • desktop issue
  • how do i get out of retail
  • How does Google index pages on which the content stays the same but the file extension changes?

    I'm about to change the page template on my website to one that a friend of mine put together, but my current page templates are in ASP and the new template is in PHP. What do I need to do to make sure Google will index all of the pages with the new template that will stay the same contentwise but just be in PHP? Should I resubmit all of my site's pages to Google with the new file extension?How does Google index pages on which the content stays the same but the file extension changes?Google will probably spider the site in no time, give it a couple days or so, then if you feel inclined, resubmit the new index.php

    Can you change your visiting myspace page to your URL that you made?

    When people visit your myspace, is there anyway to show your myspace URL on the top of your browser instead of all that jibber jabber? (Ex. below) I'm sure many others would like to know the answer to this question also.





    http://profile.myspace.com/index.cfm?fuseaction=user.viewProfile%26amp;friendID=Can you change your visiting myspace page to your URL that you made?You provided an invalid link.

    Help with the Yola website editor please?

    I am trying to change my home page.



    There is a page called %26quot;Rules%26quot; and a page called %26quot;Index%26quot;. Index is my current home page, it has always been that way. I would like for Rules to be my home page instead, but I don't know how to change it without copying %26amp; pasting everything? Thanks!Help with the Yola website editor please?The index page is always (almost always, anyway) the first page of a site. You could try to delete your current index page, or rename it, but this may not work - it may automatically regenerate - and rename your rules page to index.



    Otherwise it's copy and paste.



    http://forum.yola.com/yola

    http://www.yola.com/customer-support/p/s鈥?/a>

    How can i change my myspace page? Helpp! easy 10 points!?

    I want to change my myspace page so that my picture and general is on the right side instead:

    Like thiss.

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



    please helppp!!!!!

    easy 10 pointss :DHow can i change my myspace page? Helpp! easy 10 points!?When you say %26quot;right%26quot; you mean the right way? Or literally on the right side?

    Okay. Option one: Look for a layout that isn't a %26quot;left sided%26quot; or %26quot;flipped%26quot; or something rather.



    Option two: get one that %26lt;i%26gt;is%26lt;/i%26gt; %26quot;flipped%26quot;... ect.

    Hope it helped
    How can i change my myspace page? Helpp! easy 10 points!?
    Thats a private page.

    Sorry.



    Look here though:

    http://www.myspacegens.com/handler.php?p鈥?/a>
    How can i change my myspace page? Helpp! easy 10 points!?
    I think theres a code u can put in...but try looking for layouts that are fliped
    heres the code. Paste this code anywhere in your edit profile







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

    table {direction:rtl;}

    table table table {direction:ltr;}

    %26lt;/style%26gt;

    Index.html question for website creating?

    When i tried to access my new site via the web i get an 'index of/' page (which I do not want). Apparently I have to 'change the name of my page' to index.html...... Now, I am completely computer illiterate. Can anyone elaborate on what this means? Where do i go to change what name and what do I do then? By the way, Im using Blue Voda. Thanks for all the help folks! Ur really saving my skin here.Index.html question for website creating?The 'Home Page' of any site has got to be named 'index.html' because that is what all computers are programmed to look for first. This is because most home pages will have many sub-directories and other pages and there has to be a 'home base' sort of page.



    So then, the home page would be%26quot; http://Whatever/index.html%26quot; and the sub-directories/other pages would be:

    http://Whatever/Page2.html

    http://WhateverPage3.html

    http://Whatever/Pictures.html

    http://Whatever/MP3s.html etc., etc.



    Also, when you create your sub-directories, be sure to name one of the files in there %26quot;index.html%26quot;. If you don't then anyone can just erase a file name of a sub-directory and see into your entire sub-directory.



    For instance, you have a bunch of pictures in the Pictures.html subdirectory. Each Pic is named something like pic1.jpg, pic2.gif etc.



    The full URL would be

    http://Whatever/Pictures/pic1.jpg



    If you don't have a file named index.html in the Pictures sub-directory, then anyone could just erase the file name (pic1.jpg) and they'd see all of your sub-directory %26quot;Pictures%26quot;. But with the index.html in there, they would just go to that index page (which can be blank).



    We couldn't navigate very well at all without the index.html pages.
    Index.html question for website creating?
    You need to find what your homepage is called. It's probably called something like:



    home.html



    All you need to do is find a way to rename that to:



    index.html



    If you have got hosting for your site, you might have a cPanel. Try and find your cPanel and find a file manager. You will be able to rename files from there.
    Index.html question for website creating?
    You have your home.html, whatever you called the home page, and you need to rename it as index.html. It's better anyway because search engines always look for index.html or whatever the page type is, .php, .cf etc.



    -Billy
    index.html is the file that opens first in a folder.

    If you have linux server with Cpanel than click on file manager than click on public_html folder in there there should be a index.html file
  • pedicures is flirting
  • makeaconnectiontomylaptop
  • PHP session_start() question?

    I have my site structure set up so that my 1 main-index page grabs the page content from the other .php pages.

    This is causing much headache when trying to include files with session_start() for login. Is it bad to have session_start(); initiated at basically every page change on the site? Doing it this way works perfectly x_xPHP session_start() question?You have to call session_start() on every page that you need to access session data. This includes any %26quot;secure%26quot; page you have on your site because you script probably checks to see if the user is logged in first.



    To be more specific, no, it's not bad to call session_start on every page. Just put it right at the top of your main-index page.
    PHP session_start() question?
    usually i would create a config.php file like this:



    %26lt;?php



    session_start();



    /*



    DATABASE INFO HERE OR OTHER STUFF



    */



    ?%26gt;



    and just include it at the top of everypage..

    Which is more correct: Re-Index, Re-index, or Reindex?

    I am a maintenance developer working on a web-page which uses Re-Index, and it just looks %26quot;off%26quot; to me. But I don't want to make any changes to it unless I am sure I am doing it correctly. I am almost certain that Re-Index is incorrect, but should it be Re-index or Reindex? Or am I wrong, and Re-Index is in fact correct?Which is more correct: Re-Index, Re-index, or Reindex?well, Re-Index is wrong

    the others look okay, but I would use Re-index

    Page that shows up in Google search?

    Ok so I've recently created a website and Google crawled it (yay!). But now when I type in the key words of my URL a link is shown to my website the problem is that it isn't my site index page. It's actually my under construction page for areas of my website still under development.



    So my question is how can I change it so that my main site page is the one that shows up instead of my under construction page.



    Any ideas or suggestions would be awesome!



    Thanks!Page that shows up in Google search?congratulations on your page

    How long have you waited for it and how did you do it?

    i designed my website in still can't see in in google
    Page that shows up in Google search?
    I've gone through that before on my webpages it could mean several things.

    1. its not done saving *even if it said so or after you log off*

    2. you could still be logged in causing it to think your still trying to do some construction to it.

    3. last but not least... when creating web pages sometimes it can take a few days *2 at the most for me* for it to let me actually view my page



    its a pain for it to wait a few days to let me view it when i tried updating it at least once a week

    good luck