By nicomartini on
Hey all... this is my first post, so please be gentle...
I've had a site up for a while, and it had been fine... I haven't touched it, but now all out bound links are no longer working:
http://www.hypeworthy.net/content/clients
Here's the code for the first entry:
<h2>Michael Urie</h2>
<img src="/sites/default/files/Urie_001(2).jpg" alt="michael urie picture"</img>
Michael Urie (ABC’s Ugly Betty) became a client of Hypeworthy in January of 2009. Michael was nominated for an Emmy as part of best comedy cast in 2007, and was nominated for a Golden Globe in the same category that same year. In 2009, Michael received two Teen Choice Award nominations. The most important thing for to solidify with Michael, was a solid place for fan interaction. Hypeworthy has given Michael a platform online and solidified his brand. One important aspect of what Hypeworthy does is helping to find the right sort of content for each client. Michael wanted to learn and to focus on Twitter, and he now has over 30,000 Twitter followers. You can find him on his <a href="
http://www.twitter.com/michaelurie/">official twitter page.</a>
The code is right, as far as I can tell... what's the deal? How can I fix this? Any ideas?
Comments
For some reason your links
For some reason your links are being printed out like this:
Your line breaks are converted into the
<br />tag and screwing up the links where you have a line break in the link.You could go through all the links and remove the line breaks.
Or you could go to http://www.yoursite.com/admin/settings/filters and turn off the "Line break converter" for the input format that you are using.
Hopefully this does not screw up any other formatting that you have going. If this is the case, you might need to play around with the order of the filters for your input format.
But here's the problem...
I did what you said, then I started looking at the rest of them... the first segment was the only one showing up with the
thing... the rest are like this:
Here's an example of my code from further down the page... again, I don't see anything wrong with it.
I think this is much bigger issue than line breaks... what do you think? I've never seen this before...
Your code of hyperlink tags
Your code of hyperlink tags looks like this:
Your inverted commas are not closed, the code of hyperlink should be like following:
Nope
For that one it did... but I went ahead and made everything identical...
Now if you look at the ONLY link on the page that's working... and compare it to the next link that's not... I see no difference... any idea what the problem can be?
This link works:
This link:
Looks like this:
Any ideas?
Your anchor text has the wrong quote marks.
I just looked at the code. the quote marks in the anchor tags are wrong.
The anchor tag has a mixture of quote marks, reverse quotes and normal quotes.
from the post above look at:
note that the quotes right after the href=” these are different than the trailing quotes " . The first quotes are the culprit.
Oh my... Thank you
You rock. Thank you. It was the quotations.
Thank you!!!