Jump to content

Link not working?


eduard

Recommended Posts

show us your code, or link. We have no idea what you are talking about.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><HTML><head><meta http-equiv="content-type" content="text/ html; charset=UTF-8"><title>Eduard Lid</title><link rel="stylesheet" type="text/css" href="ex1.css"></head><body><div class="header"><a href="http://www.viadeo.com/es/profile/eduard.lid"><b>Profile</b></a><a href="http://www.devsynergy.net/Portals/57ad7180-c5e7-49f5-b282-c6475cdb7ee7/database.gif"><b>Web developer</b></a></div><div id="main"><object=width="100%" height=100%"></object><img src="images/me.JPG" alt="Eduard Lid" align="right" width="350" height="256"></div><div class="footer"><h6>This website is made by</h6> <h2>Eduard Lid</h2><h6>©</h6><h5>(1152*720px)</h5></div></body></HTML>a:link,a:visited{border-style:groove;border-color:#808080;color:#6A5ACD;text-decoration:none;display:block;background-color:#A9A9A9;width:15%;text-align:center;padding:4px;}a:hover,a:active{background-color:#000000;}body{overflow:scroll;margin:0px;padding:0px;width:100%;}div.header{border-style:groove;border-color:#808080;background-color:#6495ED;height:13em;}div#main{height:16em;background-color:#ffffff;padding:0px;margin:0px;}div.footer{background-color:#6495ED;border-style:groove;border-color:#808080;height:15em;text-align:center;}p{font-family:"Times New Roman",Times,serif;font-size:40px;color:#000000;}h5{text-align:center;color:#000080;font-family: Verdana, Geneva, sans-serif;}
Link to comment
Share on other sites

seems fine to me. what browser are you not seeing the "Web Developer" button in?There are other things worth mentioning, but I don't think they have any relation to the situation at hand.

Link to comment
Share on other sites

seems fine to me. what browser are you not seeing the "Web Developer" button in?There are other things worth mentioning, but I don't think they have any relation to the situation at hand.
Neither Safari nor Firefox
Link to comment
Share on other sites

i see it there too. can you take a screen shot of what you are seeing? I see a button that looks exactly like the one above, hover state and all.

Link to comment
Share on other sites

i see it there too. can you take a screen shot of what you are seeing? I see a button that looks exactly like the one above, hover state and all.
I don´t know how to make a screenshot! I only see the first button (Profile)
Link to comment
Share on other sites

Mac: command + shift + 3Windows: shift + print screen (beside F12)Paste it into an image editing program (Paint works!), save it as a JPG, and upload it (you can attach it to post #1 in the Full Editor).

Link to comment
Share on other sites

Mac: command + shift + 3Windows: shift + print screen (beside F12)Paste it into an image editing program (Paint works!), save it as a JPG, and upload it (you can attach it to post #1 in the Full Editor).
Thanks!
Link to comment
Share on other sites

Checking your actual website, you don't have the code for the second button: http://www.eduardlid.com/
Thanks! On the css sheet?But before I changed the html file I had 3 links visible and I´ve not changed anything on my css sheet!
Link to comment
Share on other sites

no.. in the html source code you are missing...

<a href="http://www.devsynergy.net/Portals/57ad7180-c5e7-49f5-b282-c6475cdb7ee7/database.gif"><b>Web developer</b></a>

Link to comment
Share on other sites

no.. in the html source code you are missing...
<a href="http://www.devsynergy.net/Portals/57ad7180-c5e7-49f5-b282-c6475cdb7ee7/database.gif"><b>Web developer</b></a>

Thanks! That was it indeed!
Link to comment
Share on other sites

really? so what was the code you posted? Next time just post the code that you're actually looking at, or give us the live link. not everyone automatically assumes you are referring to a live website.... :)

Link to comment
Share on other sites

Why is the second link not working? (I forgot the code!)<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><HTML><head><meta http-equiv="content-type" content="text/ html; charset=UTF-8"><title>Eduard Lid</title><link rel="stylesheet" type="text/css" href="ex1.css"></head><body><div class="header"><a href="http://www.viadeo.com/es/profile/eduard.lid"><b><h3>Profile</h3></b></a><a href="http://www.eduardlid.com/Web designer">Web designer</a></div><div id="main"><object=width="100%" height=100%"></object><img src="images/me.JPG" alt="Eduard Lid" align="right" width="350" height="256"></div><div class="footer"<h6>This website is made by ©</h6><h1>Eduard Lid</h1><h5>(1152*720px)</h5></div></body></HTML>

Link to comment
Share on other sites

Can you be a little more specific?What's the full code of the page on which the link is not working?Where is the page having the link located?What's the full URL and filepath of the file you want to link to?What's the full URL to which you eventually arrive to instead?

Link to comment
Share on other sites

[rant]I'll refer this thread to the mods to make a merge... please respect the rules of the forum and try and keep similar questions in the same thread, you act as if this forum is your own personal support blog...http://w3schools.invisionzone.com/index.php?showtopic=36585[/rant]as far as this thread goes, would it kill you to provide some context? no one knows what the heck you are talking about when you make a thread with one question, no context, and no link or code!and if you're going provide code, make sure it's working code. the last thread about your link issue you provided code that was different from on your website, which is what other people had to go look up in order to actually find the problem. >.<

Link to comment
Share on other sites

<< Merged >>So... the link you're having problems with is:

<a href="http://www.eduardlid.com/Web designer">Web designer</a>

OK, here's an answer for you - spaces in URLs need to be "encoded". To be more precise, each space needs to be written as "%20". Assuming that you indeed have a folder called "Web developer" under your document root, you'll need to turn the link to:

<a href="http://www.eduardlid.com/Web%20designer">Web designer</a>

(again: note the "%20")

Link to comment
Share on other sites

the two common conventions are camel case or underscores

<a href="http://www.eduardlid.com/webDesigner">Web designer</a>

<a href="http://www.eduardlid.com/Web_designer">Web designer</a>

Link to comment
Share on other sites

the two common conventions are camel case or underscores
<a href="http://www.eduardlid.com/webDesigner">Web designer</a>

<a href="http://www.eduardlid.com/Web_designer">Web designer</a>

Thanks very much!I changed it, but it doesn´t work!(p. s. I also changed the website folder: web_designer
Link to comment
Share on other sites

<< Merged >>So... the link you're having problems with is:
<a href="http://www.eduardlid.com/Web designer">Web designer</a>

OK, here's an answer for you - spaces in URLs need to be "encoded". To be more precise, each space needs to be written as "%20". Assuming that you indeed have a folder called "Web developer" under your document root, you'll need to turn the link to:

<a href="http://www.eduardlid.com/Web%20designer">Web designer</a>

(again: note the "%20")

The scientist wrote me to use _So, which one is correct?
Link to comment
Share on other sites

Either you rename your filename to have an underscore, and write it as such in the link, or you encode the space in the link as %20. It's up to you.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...