Forum Moderators: not2easy
Try it <snip> An interesting thing is that the problem does not occur on the site search results page which comes from atomz.com but uses the same style sheet as the rest of the site.
My guess is that Word is trying to improperly apply the style sheet to the pasted text. However, I'm not sure. I have looked online (google, a list apart, etc.) and have found nothing.
The HTML is mostly XHTML 1.0 Transitional but not exactly (I edit using Visual Studio which rewrites some for my proper XHTML into "MS HTML" - a separate topic altogether).
Any ideals? Thanks!
[edited by: SuzyUK at 7:30 pm (utc) on July 8, 2004]
[edit reason] sorry No URLs per TOS #13 [webmasterworld.com] [/edit]
The Urls's were removed per the TOS, but I just wanted to let you and others know, that I tested your site and yes had the same problem, I also then went and tested my own site and it pasted but it took a lot time to think about it so it could be a specific CSS trigger..
I am "destructing" (;))your code as we speak I think it may be possible to narrow it down to a trigger, will let you know..
Does anyone else recognise this or know of the cause?
Suzy
you have this in the head of your page
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html>
<head>
<title>Page Title</title>
<?xml version="1.0" encoding="iso-8859-1"?>
the <xml> declaration (in bold) should be the very first thing on the page, moving it up there makes the text pastable, try this...
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<title>Your Page Title</title>
let us know
Suzy
[edited: for grammar..]
[edited by: SuzyUK at 8:15 pm (utc) on July 8, 2004]