can anyone suggest anything? yes
insert the LINK tag in the same place where you insert the TITLE, i.e. the HEAD
if that's a separate piece of code on every one of your pages, then that's how you have architected your source code, so you have to insert it once into all pages, but then at least you'll be done with it
tip: search & replace <HEAD> to <HEAD><LINK ... >
other people use a common template or some similar technique that is called on every page, which is why i suggested inserting it there would be easy
the only time it makes sense to do this in the application.cfm file is if you already generate every page's DOCTYPE and HEAD there
in my own site, i generate the DOCTYPE in application.cfm, but i do the HEAD in a CFINCLUDE template, because the TITLE is pulled from a database, and i don't want a database call in application.cfm, because there are several non-database but coldfusion pages which don't pull the TITLE from the database
plus, although it's not implemented yet, my common template also has stylesheet switcher and cookie logic, so i don't want to clutter that into application.cfm
so i don't generate the LINK in application.cfm, but in a common template that's included on every page which needs a stylesheet
this isn't really a "coldfusion" question so much as it is a question of how to architect the source code for all the pages in a site, pages which will obviously share some things, e.g. same logos, stylesheets....
rudy