I've started incorporating the Blueprint CSS framework in CFWheels and am running into a few little quirks. The first was after including the css files, all my links where showing the link following by the full path of the link in parentheses.
I finally figured out the problem was in the print.css file on (as of this version) line 29.
The css was:
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}
I didn't even realize you could add the full link with css!
Anyway, commenting out the line does the trick without any other adverse effects that I see yet.