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 ??
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 ??
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?