• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

dreamweaver help

Leejai

Golden Member
I heard there was a way, but I need to push a stylesheet to the first line of all HTML files in a particular folder using Dreamweaver MX. Someone said this was done. I tried using the search feature to replace, but didn't know how to call out the first line of each html file.

Thanks in advance!
 
Thanks notfred, but unfortunately we're not using any header tags. These are simple html documents for our Knowledge Base solutions.
 
The first line should be the DTD or at least the <HTML> tag, not your CSS import. You can easily do it if you used templates, but I don't think you did.
 
Originally posted by: WobbleWobble
The first line should be the DTD or at least the <HTML> tag, not your CSS import. You can easily do it if you used templates, but I don't think you did.

no, we didn't....my company's so cheap they wanted to hire interns to export ~6000 solutions, so they just start w/ the actual text...no tags...is it possible?
 
What I would do is a Search and Replace

Search for </HEAD>

and replace with

<LINK href="stylesheet.css" rel="stylesheet" type="text/css">
</HEAD>
 
Back
Top