FP 2003 will not save html code

W

WVBA

FP 2003 is doing some freaky things, and I am not sure how to remedy
it.

First, below is the link for a page on my website that is correct. This
means that the drop down menu doesn't look weird and all links work:

You can see this code in the page:
http://www.wvba.com/about_wvba.htm

It's at the top of the page when you chose "View" > "Source" in the IE
menu.

Ok, someone else fixed some broken links and made the fixes for the
weird navigation menu problems.

What's happening is, when I pull up the files that still need to be
completed (content), my FP 2003 isn't recognizing the fix and the
navigation menu gets jumbled. Like this:

http://www.wvba.com

*****
Below is an email from the guy who helped me get the menus straighted
out to begin with:

Front Page is removing the code that makes the menus align. After you
make your edits, open the HTM file in Notepad, and add this code to the
page - anywhere will do, as long as it appears below the <html> tag at
the top:

<style>
..ffmnu { position: relative; top:-16px; } </style>

<!--[if IE]>
<style>
..ffmnu{ top: 0px; }
</style>
<![endif]-->


You may try placing this code between the <head> and </head> tags in
the html files.

If FrontPage has any kind of setting to "preserve" comments of
formatting of eth html, please turn that on, or otherwise every time
you edit a page - you'll have to manually add in the above section of
code.
*****

The problem is, when I go into Tools/Page Options, there is not HTML
Source area for me to tell it to either preserve or not preserve HTML.

How can I tell FP 03 to accept my changes to the content ONLY without
it screwing up the other html files?

Thanks in advance for your answers.
 
S

Stefan B Rusynko

Move the code below where it belongs ( inside the HEAD section)
<style>
..ffmnu{ position:relative; top: -16px; }
</style>
<!--[if IE]>
<style>
..ffmnu{ top: 0px; }
</style>
<![endif]-->

--

_____________________________________________
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
_____________________________________________


|
| FP 2003 is doing some freaky things, and I am not sure how to remedy
| it.
|
| First, below is the link for a page on my website that is correct. This
| means that the drop down menu doesn't look weird and all links work:
|
| You can see this code in the page:
| http://www.wvba.com/about_wvba.htm
|
| It's at the top of the page when you chose "View" > "Source" in the IE
| menu.
|
| Ok, someone else fixed some broken links and made the fixes for the
| weird navigation menu problems.
|
| What's happening is, when I pull up the files that still need to be
| completed (content), my FP 2003 isn't recognizing the fix and the
| navigation menu gets jumbled. Like this:
|
| http://www.wvba.com
|
| *****
| Below is an email from the guy who helped me get the menus straighted
| out to begin with:
|
| Front Page is removing the code that makes the menus align. After you
| make your edits, open the HTM file in Notepad, and add this code to the
| page - anywhere will do, as long as it appears below the <html> tag at
| the top:
|
| <style>
| ffmnu { position: relative; top:-16px; } </style>
|
| <!--[if IE]>
| <style>
| ffmnu{ top: 0px; }
| </style>
| <![endif]-->
|
|
| You may try placing this code between the <head> and </head> tags in
| the html files.
|
| If FrontPage has any kind of setting to "preserve" comments of
| formatting of eth html, please turn that on, or otherwise every time
| you edit a page - you'll have to manually add in the above section of
| code.
| *****
|
| The problem is, when I go into Tools/Page Options, there is not HTML
| Source area for me to tell it to either preserve or not preserve HTML.
|
| How can I tell FP 03 to accept my changes to the content ONLY without
| it screwing up the other html files?
|
| Thanks in advance for your answers.
|
|
|
| --
| WVBA
| ------------------------------------------------------------------------
| Posted via http://www.forum4designers.com
| ------------------------------------------------------------------------
| View this thread: http://www.forum4designers.com/message483414.html
|
 
R

Ronx

FrontPage 2003 does not alter or remove HTML code unless the code has
overwritten a Webbott, or is so badly written it cannot be viewed in Design
or Preview views. There are no settings to preserve HTML in this version,
since it does by default.

However, a quick glance at the page shows that the styles that are missing
will make no difference to the button layout, since each individual button
appears to be in its own layer which is positioned by inline styles. Some
of these layers (the lower buttons) use Position Absolute, others use
Position Relative.


FYI, the menu needs to be looked at again since hovering over the drop
downs causes it to flash. This is most likely due to the hover events
being on a layer, which will fire mouseover and mouseout events as the
mouse moves over each link in the layer.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/

WVBA said:
FP 2003 is doing some freaky things, and I am not sure how to remedy
it.

First, below is the link for a page on my website that is correct. This
means that the drop down menu doesn't look weird and all links work:

You can see this code in the page:
http://www.wvba.com/about_wvba.htm

It's at the top of the page when you chose "View" > "Source" in the IE
menu.

Ok, someone else fixed some broken links and made the fixes for the
weird navigation menu problems.

What's happening is, when I pull up the files that still need to be
completed (content), my FP 2003 isn't recognizing the fix and the
navigation menu gets jumbled. Like this:

http://www.wvba.com

*****
Below is an email from the guy who helped me get the menus straighted
out to begin with:

Front Page is removing the code that makes the menus align. After you
make your edits, open the HTM file in Notepad, and add this code to the
page - anywhere will do, as long as it appears below the <html> tag at
the top:

<style>
ffmnu { position: relative; top:-16px; } </style>

<!--[if IE]>
<style>
ffmnu{ top: 0px; }
</style>
<![endif]-->


You may try placing this code between the <head> and </head> tags in
the html files.

If FrontPage has any kind of setting to "preserve" comments of
formatting of eth html, please turn that on, or otherwise every time
you edit a page - you'll have to manually add in the above section of
code.
*****

The problem is, when I go into Tools/Page Options, there is not HTML
Source area for me to tell it to either preserve or not preserve HTML.

How can I tell FP 03 to accept my changes to the content ONLY without
it screwing up the other html files?

Thanks in advance for your answers.
 
W

WVBA

I don't think I did it correctly. Like this?

www.wvba.com

<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>West Virginia Broadcasters Association Website</title>

<script language="JavaScript">
<!--

function SymError()
{
return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
return (new Object());
}

window.open = SymWinOpen;

//-->
</script>



QUOTE]-Originally posted by Stefan B Rusynko -
*Move the code below where it belongs ( inside the HEAD section)
<style>
...ffmnu{ position:relative; top: -16px; }
</style>
<!--[if IE]>
<style>
...ffmnu{ top: 0px; }
</style>
<![endif]-->

--

_____________________________________________
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
_____________________________________________


|
| FP 2003 is doing some freaky things, and I am not sure how to remedy
| it.
|
| First, below is the link for a page on my website that is correct
This
| means that the drop down menu doesn't look weird and all links work:
|
| You can see this code in the page:
| http://www.wvba.com/about_wvba.htm
|
| It's at the top of the page when you chose "View" > "Source" in th
IE
| menu.
|
| Ok, someone else fixed some broken links and made the fixes for the
| weird navigation menu problems.
|
| What's happening is, when I pull up the files that still need to be
| completed (content), my FP 2003 isn't recognizing the fix and the
| navigation menu gets jumbled. Like this:
|
| http://www.wvba.com
|
| *****
| Below is an email from the guy who helped me get the menu
straighted
| out to begin with:
|
| Front Page is removing the code that makes the menus align. Afte
you
| make your edits, open the HTM file in Notepad, and add this code t
the
| page - anywhere will do, as long as it appears below the <html> ta
at
| the top:
|
| <style>
| ffmnu { position: relative; top:-16px; } </style>
|
| <!--[if IE]>
| <style>
| ffmnu{ top: 0px; }
| </style>
| <![endif]-->
|
|
| You may try placing this code between the <head> and </head> tags in
| the html files.
|
| If FrontPage has any kind of setting to "preserve" comments of
| formatting of eth html, please turn that on, or otherwise every time
| you edit a page - you'll have to manually add in the above sectio
of
| code.
| *****
|
| The problem is, when I go into Tools/Page Options, there is not HTML
| Source area for me to tell it to either preserve or not preserv
HTML.
|
| How can I tell FP 03 to accept my changes to the content ONL
without
| it screwing up the other html files?
|
| Thanks in advance for your answers.
|
|
|
| --
| WVBA

------------------------------------------------------------------------
| Posted via http://www.forum4designers.com

------------------------------------------------------------------------
| View this thread: http://www.forum4designers.com/message483414.html
|


-
WVB
 
S

Stefan B Rusynko

1) Delele the script from you posted
- it come from norton when you view source in browser
2) Just change below:

<html>
<style>
..ffmnu{
position:relative;
top: -16px;
}
</style>
<!--[if IE]>
<style>
..ffmnu{
top: 0px;
}</style>
<![endif]-->
<head>
<title>About WVBA</title>

3) To
<html>
<head>
<title>About WVBA</title>
<style>
..ffmnu{ position:relative; top: -16px; }
</style>
<!--[if IE]>
<style>
..ffmnu{ top: 0px; }
</style>
<![endif]-->




--

_____________________________________________
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
_____________________________________________


|
| I don't think I did it correctly. Like this?
|
| www.wvba.com
|
| <html>
|
| <head>
| <meta name="GENERATOR" content="Microsoft FrontPage 6.0">
| <meta name="ProgId" content="FrontPage.Editor.Document">
| <title>West Virginia Broadcasters Association Website</title>
|
| <script language="JavaScript">
| <!--
|
| function SymError()
| {
| return true;
| }
|
| window.onerror = SymError;
|
| var SymRealWinOpen = window.open;
|
| function SymWinOpen(url, name, attributes)
| {
| return (new Object());
| }
|
| window.open = SymWinOpen;
|
| //-->
| </script>
|
|
|
| QUOTE]-Originally posted by Stefan B Rusynko -
| *Move the code below where it belongs ( inside the HEAD section)
| <style>
| ..ffmnu{ position:relative; top: -16px; }
| </style>
| <!--[if IE]>
| <style>
| ..ffmnu{ top: 0px; }
| </style>
| <![endif]-->
|
| --
|
| _____________________________________________
| 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
| _____________________________________________
|
|
| ||
|| FP 2003 is doing some freaky things, and I am not sure how to remedy
|| it.
||
|| First, below is the link for a page on my website that is correct.
| This
|| means that the drop down menu doesn't look weird and all links work:
||
|| You can see this code in the page:
|| http://www.wvba.com/about_wvba.htm
||
|| It's at the top of the page when you chose "View" > "Source" in the
| IE
|| menu.
||
|| Ok, someone else fixed some broken links and made the fixes for the
|| weird navigation menu problems.
||
|| What's happening is, when I pull up the files that still need to be
|| completed (content), my FP 2003 isn't recognizing the fix and the
|| navigation menu gets jumbled. Like this:
||
|| http://www.wvba.com
||
|| *****
|| Below is an email from the guy who helped me get the menus
| straighted
|| out to begin with:
||
|| Front Page is removing the code that makes the menus align. After
| you
|| make your edits, open the HTM file in Notepad, and add this code to
| the
|| page - anywhere will do, as long as it appears below the <html> tag
| at
|| the top:
||
|| <style>
|| ffmnu { position: relative; top:-16px; } </style>
||
|| <!--[if IE]>
|| <style>
|| ffmnu{ top: 0px; }
|| </style>
|| <![endif]-->
||
||
|| You may try placing this code between the <head> and </head> tags in
|| the html files.
||
|| If FrontPage has any kind of setting to "preserve" comments of
|| formatting of eth html, please turn that on, or otherwise every time
|| you edit a page - you'll have to manually add in the above section
| of
|| code.
|| *****
||
|| The problem is, when I go into Tools/Page Options, there is not HTML
|| Source area for me to tell it to either preserve or not preserve
| HTML.
||
|| How can I tell FP 03 to accept my changes to the content ONLY
| without
|| it screwing up the other html files?
||
|| Thanks in advance for your answers.
||
||
||
|| --
|| WVBA
||
| ------------------------------------------------------------------------
|| Posted via http://www.forum4designers.com
||
| ------------------------------------------------------------------------
|| View this thread: http://www.forum4designers.com/message483414.html
|| *
|
|
|
| --
| WVBA
| ------------------------------------------------------------------------
| Posted via http://www.forum4designers.com
| ------------------------------------------------------------------------
| View this thread: http://www.forum4designers.com/message483414.html
|
 

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