The Community forums are being phased out in favor of a new Slack group.
Add your email address below to get an invitation to join the community slack group
Printing URLs with formidable bootstrap (FYI)
FYI
The site is using a Themify theme (Ultra) and when you would click on Print Preview, anything in a page that has a url, the url would show next to the link whether it was a text link or a picture.
The code below was added to prevent this.
Enter the following line of code in the admin panel path…
Formidable<styles<custom CSS
a[href]:after { content: none !important; }
I don’t know where in the bootstrap CSS this may be but either way, when it is updated, it will not overwrite this snippet.
August 28, 2015 at 5:04 pm
Instead of this:
a[href]:after { content: none !important; }
Changed to this:
a[href]:after {
content: " (" attr(href) ")";
}
Discussion closed.