0

Possible Duplicate:
Hyperlinks showing URL with Blueprint

If i include blueprint all my link in page looks like (if it was link on google.com) google(http://google.com)+ all unerline but but if i remove blue print links looks fine without brackets ?

what it can be ??

Community
  • 1
  • 1
Alexandr
  • 117
  • 1
  • 2
  • 7

2 Answers2

2

You mean blueprint css? That's because of the following lines in print.css :

a:link:after, a:visited:after {
  content: " (" attr(href) ")";
  font-size: 90%;
}

It's the content:-line that's "bugging" you. Are you including print.css for screen-media too? What does your HTML look like?

  • When i look tutorial i understood need include in any page 3 lines 1st if ie and include ie.css 2nd print.css 3dr screen.css You mean that ?i think do something wrong in fundamentally? – Alexandr Jun 03 '10 at 07:43
  • You should specify the media-type, like this: – Martijn Engler Jun 03 '10 at 07:47
  • thank you all work !Recomend great book or resource and toolkit for fast creating (html css side) web page? – Alexandr Jun 03 '10 at 08:27
1

Make sure the media attribute of your link item is set to "print"

<link rel="stylesheet" href="App_Themes/Default/print.css" type="text/css" media="print" />

The CSS that is responsible for this looks something like:

a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}
LorenzoValentijn
  • 1,381
  • 1
  • 11
  • 12