Results 1 to 6 of 6

Thread: Need Help!!!!!plz

  1. #1
    Join Date
    Jun 2007
    Posts
    18
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Question Need Help!!!!!plz

    hey my site is not working at least not on my side can someone check it out www.ethan.wmn.cc

    the problom is on my side the background image is not working and the links instead of going to eg. www.ethan.wmn.cc/images.html it goes to www.ethan.wmn.cc/www.ethan.wmn.cc/images.html

    can some one tell me if it works on ur side and if not how to i fix this problom?

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    The reason it is not working is because of some errors in your code. For the background image, in your CSS you have this:

    Code:
    body {
    	background-color: #000000;
    	background-image: url(http:ethan.wmn.cc/images/back3.jpg);
    	background-repeat: no-repeat;
    }
    when it should be like so:

    Code:
    body {
    	background-color: #000000;
    	background-image: url(http://ethan.wmn.cc/images/back3.jpg);
    	background-repeat: no-repeat;
    }
    As for the links; you need to either use the full absolute url like so:

    Code:
    <a href="http://www.ethan.wmn.cc/images.html">Images</a>
    or use relative urls like so:

    Code:
    <a href="/images.html">Images</a>
    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  3. #3
    Join Date
    Jun 2007
    Posts
    18
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    ok i got the links right (i hope) but its not working 100% on my side so could you check my site out again plz

  4. #4
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    What's not working on it?
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  5. #5
    Join Date
    Jun 2007
    Posts
    18
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    well on my side when i type in http://www.ethan.wmn.cc it does not work but when i type in http://ethan.wmn.cc it works and when i go eg. into images then i click back to home page it goes to http://ethan.wmn.cc/http://www.ethan.wmn.cc

    but if it works on ur side then ok nvm
    Last edited by *Warrior*; 07-03-2007 at 10:11 PM. Reason: spelling mistakes

  6. #6
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    It all seems to work with the exception of about.html (it appears that it is not on the server). Other than that, I see nothing wrong with it and I am able to access the site using either of the urls you posted.

    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •