Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link target displaying in link text in Firefox

Status
Not open for further replies.

dr00bie

Programmer
Feb 19, 2004
108
US
I am trying to help a coworker at a different facility troubleshoot their website.

The problem is that in Firefox, the links show up with the link target in the link text, fouling up the design of the page. I am really not sure what is causing this, I can't see anything in the code that would cause this.

The site can be found at,
What could be causing this?

Thanks,
Drew
 
Code:
a:after
{
	content:' [' attr(href) '] '
}
I noticed that the code above was in one of the style sheets. It could be that causing the problem.


____________________________________________________________
Mark,
[URL unfurl="true"]http://aspnetlibrary.com[/url]

Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
 
Yup, that is it. It is a pretty standard css sometimes used for printing. This way, every link on the page will in addition to the text have a square bracket with the actual link printed after the link text. It is very useful in printing (where underlined text means absolutely nothing).
 
Thanks!

I just added, media="print" to the print css and that took care of it (it will only be rendered on print).

Thanks,
Drew
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top