When I print my website all the link URLs show up overlaid on the page. Is there something written into the site CSS that makes this happen? Is there a line of code I can remove or add to stop this happening?
Yes indeed it looks nasty. It was made so user could know URL even when reading paper:-) To remove it go to style.css and remove such rules(almost end of file)
Comments
Yes indeed it looks nasty. It was made so user could know URL even when reading paper:-) To remove it go to style.css and remove such rules(almost end of file)
a[href]:after {I will remove it from default style sheet also.content: " (" attr(href) ")";
}
With regards.