Entire sentences wrapping one word ata time when saving file.

G

Guest

When I save my html file, entire senetences are being wrapped one word ata
time (or, to put it another way, each word of a sentence is on its own line.

For example:

"This sentence would look like what you see next"

"This
sentence
would
look
like
what
you
see
next"

This happens also when I am typing text into design view and I see it
wrapping in code view when I hit the spacebar. Its acting as if I am doing a
LF (or Enter).

RESULT: An HTML page that should only be 100 lines of code can turn into
over a 1000 lines of code.

I am spending more time cleaning up the code in my plain text Editor than
designing thepage itself. And I can't make updates to one single line of the
page because the every sentence gets wrapped upon saving my file.
 
T

Thomas A. Rowe

Do you have the text in a table? Can you provide a URL to this page on the internet?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
G

Guest

Thomas A. Rowe said:
Do you have the text in a table? Can you provide a URL to this page on the internet?

REPLY: I uploaded a page for you to see what the source code looks like
after I try updating the page with some more text.

The text is NOT within a table, as I am using CSS style DIVs. The only thing
I try to use tables for are charts.

What happens is as I am typing in the WYSIWYG portion of FRONTPAGE 2003, the
text is being wrapped to a new line or LF'd when I hit the spacebar.

VIEW SOURCE of
http://www.mightypets.com/General-Cage/General-Cage-Star-Plastic-Folding-Crate.html

(starting at line 136)
<div class="box-top">

<h3>Optional Accessories for the Star Crates.</h3>

Set of four easy rolling 3" diameter wheels for easy portability.
<!--This is where I started my update-->
Allows
your pet's
cage to be
easily
transported
and
loaded.
Removable
for easy
storage.</div>
<div class="box-bottom"> </div>




<div class="box-top"> </div>
<div class="box-bottom">Also available is a set of ten shades for side
openings to create a more den-like environment for dog, lessening travel
anxieties.
<!--This is again where I updated more text-->
Give your
pet the
privacy
needed
during
trips</div>

END OF VIEW SOURCE

Here is what the code should look like:

<div class="box-top">

<h3>Optional Accessories for the Star Crates.</h3>

Set of four easy rolling 3" diameter wheels for easy portability. Allows
your pet's cage to be easily transported and loaded. Removable for easy
storage.</div>
<div class="box-bottom"> </div>



<div class="box-top"> </div>
<div class="box-bottom">Also available is a set of ten shades for side
openings to create a more den-like environment for dog, lessening travel
anxieties. Give your pet the privacy needed during trips</div>


The problem is within Frontpage 2003 as I am editing, not with any browser
issues.

Summary - When I hit the Spacebar, it is acting like a CR/LF in html view,
starting a new line in the code. A simple ten word sentence should be one
line, instead it becomes ten lines, with each word on its own line.

Thanks for your prompt reply.

Robert M Brady - AVWebNet.com
 
S

Stefan B Rusynko

Looks like you have corrected it

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| "Thomas A. Rowe" wrote:
|
| > Do you have the text in a table? Can you provide a URL to this page on the internet?
|
| REPLY: I uploaded a page for you to see what the source code looks like
| after I try updating the page with some more text.
|
| The text is NOT within a table, as I am using CSS style DIVs. The only thing
| I try to use tables for are charts.
|
| What happens is as I am typing in the WYSIWYG portion of FRONTPAGE 2003, the
| text is being wrapped to a new line or LF'd when I hit the spacebar.
|
| VIEW SOURCE of
| http://www.mightypets.com/General-Cage/General-Cage-Star-Plastic-Folding-Crate.html
|
| (starting at line 136)
| <div class="box-top">
|
| <h3>Optional Accessories for the Star Crates.</h3>
|
| Set of four easy rolling 3" diameter wheels for easy portability.
| <!--This is where I started my update-->
| Allows
| your pet's
| cage to be
| easily
| transported
| and
| loaded.
| Removable
| for easy
| storage.</div>
| <div class="box-bottom"> </div>
|
|
|
|
| <div class="box-top"> </div>
| <div class="box-bottom">Also available is a set of ten shades for side
| openings to create a more den-like environment for dog, lessening travel
| anxieties.
| <!--This is again where I updated more text-->
| Give your
| pet the
| privacy
| needed
| during
| trips</div>
|
| END OF VIEW SOURCE
|
| Here is what the code should look like:
|
| <div class="box-top">
|
| <h3>Optional Accessories for the Star Crates.</h3>
|
| Set of four easy rolling 3" diameter wheels for easy portability. Allows
| your pet's cage to be easily transported and loaded. Removable for easy
| storage.</div>
| <div class="box-bottom"> </div>
|
|
|
| <div class="box-top"> </div>
| <div class="box-bottom">Also available is a set of ten shades for side
| openings to create a more den-like environment for dog, lessening travel
| anxieties. Give your pet the privacy needed during trips</div>
|
|
| The problem is within Frontpage 2003 as I am editing, not with any browser
| issues.
|
| Summary - When I hit the Spacebar, it is acting like a CR/LF in html view,
| starting a new line in the code. A simple ten word sentence should be one
| line, instead it becomes ten lines, with each word on its own line.
|
| Thanks for your prompt reply.
|
| Robert M Brady - AVWebNet.com
 
R

Rob Giordano \(Crash\)

It's still like that...he's talking about in View Source or Code View.


| Looks like you have corrected it
|
| --
|
| _____________________________________________
| SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| "Warning - Using the F1 Key will not break anything!" (-;
| To find the best Newsgroup for FrontPage support see:
| http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
| _____________________________________________
|
|
| "AVWebNut in Antelope Valley"
| || "Thomas A. Rowe" wrote:
||
|| > Do you have the text in a table? Can you provide a URL to this page on
the internet?
||
|| REPLY: I uploaded a page for you to see what the source code looks like
|| after I try updating the page with some more text.
||
|| The text is NOT within a table, as I am using CSS style DIVs. The only
thing
|| I try to use tables for are charts.
||
|| What happens is as I am typing in the WYSIWYG portion of FRONTPAGE 2003,
the
|| text is being wrapped to a new line or LF'd when I hit the spacebar.
||
|| VIEW SOURCE of
||
http://www.mightypets.com/General-Cage/General-Cage-Star-Plastic-Folding-Crate.html
||
|| (starting at line 136)
|| <div class="box-top">
||
|| <h3>Optional Accessories for the Star Crates.</h3>
||
|| Set of four easy rolling 3" diameter wheels for easy portability.
|| <!--This is where I started my update-->
|| Allows
|| your pet's
|| cage to be
|| easily
|| transported
|| and
|| loaded.
|| Removable
|| for easy
|| storage.</div>
|| <div class="box-bottom"> </div>
||
||
||
||
|| <div class="box-top"> </div>
|| <div class="box-bottom">Also available is a set of ten shades for side
|| openings to create a more den-like environment for dog, lessening travel
|| anxieties.
|| <!--This is again where I updated more text-->
|| Give your
|| pet the
|| privacy
|| needed
|| during
|| trips</div>
||
|| END OF VIEW SOURCE
||
|| Here is what the code should look like:
||
|| <div class="box-top">
||
|| <h3>Optional Accessories for the Star Crates.</h3>
||
|| Set of four easy rolling 3" diameter wheels for easy portability. Allows
|| your pet's cage to be easily transported and loaded. Removable for easy
|| storage.</div>
|| <div class="box-bottom"> </div>
||
||
||
|| <div class="box-top"> </div>
|| <div class="box-bottom">Also available is a set of ten shades for side
|| openings to create a more den-like environment for dog, lessening travel
|| anxieties. Give your pet the privacy needed during trips</div>
||
||
|| The problem is within Frontpage 2003 as I am editing, not with any
browser
|| issues.
||
|| Summary - When I hit the Spacebar, it is acting like a CR/LF in html
view,
|| starting a new line in the code. A simple ten word sentence should be one
|| line, instead it becomes ten lines, with each word on its own line.
||
|| Thanks for your prompt reply.
||
|| Robert M Brady - AVWebNet.com
|
|
 
C

chris

That page needs some serious html validation- several html, head, body
and /html tags plus duplicate meta tags in the wrong place. Maybe your
bad code has something to do with it???
It's still like that...he's talking about in View Source or Code View.


| Looks like you have corrected it
|
| --
|
| _____________________________________________
| SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| "Warning - Using the F1 Key will not break anything!" (-;
| To find the best Newsgroup for FrontPage support see:
| http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
| _____________________________________________
|
|
| "AVWebNut in Antelope Valley"
| || "Thomas A. Rowe" wrote:
||
|| > Do you have the text in a table? Can you provide a URL to this page on
the internet?
||
|| REPLY: I uploaded a page for you to see what the source code looks like
|| after I try updating the page with some more text.
||
|| The text is NOT within a table, as I am using CSS style DIVs. The only
thing
|| I try to use tables for are charts.
||
|| What happens is as I am typing in the WYSIWYG portion of FRONTPAGE 2003,
the
|| text is being wrapped to a new line or LF'd when I hit the spacebar.
||
|| VIEW SOURCE of
||
http://www.mightypets.com/General-Cage/General-Cage-Star-Plastic-Folding-Crate.html
||
|| (starting at line 136)
|| <div class="box-top">
||
|| <h3>Optional Accessories for the Star Crates.</h3>
||
|| Set of four easy rolling 3" diameter wheels for easy portability.
|| <!--This is where I started my update-->
|| Allows
|| your pet's
|| cage to be
|| easily
|| transported
|| and
|| loaded.
|| Removable
|| for easy
|| storage.</div>
|| <div class="box-bottom"> </div>
||
||
||
||
|| <div class="box-top"> </div>
|| <div class="box-bottom">Also available is a set of ten shades for side
|| openings to create a more den-like environment for dog, lessening travel
|| anxieties.
|| <!--This is again where I updated more text-->
|| Give your
|| pet the
|| privacy
|| needed
|| during
|| trips</div>
||
|| END OF VIEW SOURCE
||
|| Here is what the code should look like:
||
|| <div class="box-top">
||
|| <h3>Optional Accessories for the Star Crates.</h3>
||
|| Set of four easy rolling 3" diameter wheels for easy portability. Allows
|| your pet's cage to be easily transported and loaded. Removable for easy
|| storage.</div>
|| <div class="box-bottom"> </div>
||
||
||
|| <div class="box-top"> </div>
|| <div class="box-bottom">Also available is a set of ten shades for side
|| openings to create a more den-like environment for dog, lessening travel
|| anxieties. Give your pet the privacy needed during trips</div>
||
||
|| The problem is within Frontpage 2003 as I am editing, not with any
browser
|| issues.
||
|| Summary - When I hit the Spacebar, it is acting like a CR/LF in html
view,
|| starting a new line in the code. A simple ten word sentence should be one
|| line, instead it becomes ten lines, with each word on its own line.
||
|| Thanks for your prompt reply.
||
|| Robert M Brady - AVWebNet.com
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top