Log in

View Full Version : Need Help!!!!!plz



*Warrior*
07-02-2007, 10:24 PM
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?

thetestingsite
07-02-2007, 10:30 PM
The reason it is not working is because of some errors in your code. For the background image, in your CSS you have this:



body {
background-color: #000000;
background-image: url(http:ethan.wmn.cc/images/back3.jpg);
background-repeat: no-repeat;
}


when it should be like so:



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:



<a href="http://www.ethan.wmn.cc/images.html">Images</a>


or use relative urls like so:



<a href="/images.html">Images</a>


Hope this helps.

*Warrior*
07-03-2007, 08:58 PM
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

thetestingsite
07-03-2007, 10:03 PM
What's not working on it?

*Warrior*
07-03-2007, 10:08 PM
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

thetestingsite
07-03-2007, 10:16 PM
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.