hide html content

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I just had a small question. Let's say I have a section of html coding in my
page (a navigation menu) that I want to temporarily 'hide'--I just want to
hide it then bring it back visible before I publish my page.
Is this possible?
Workaround?

Thanks in advance!
 
Hide it before you publish? From whom? Yourself?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
what purpose does this serve - just out of interest?
delete the code? retype it?
????
 
cut/paste, hide it on a non-linked page
what for though?
 
Sorry, I should have made my self clear. I have a javascript vertical menu
inline in my page, when I view it in design mode, the menu and it's 'submenu'
are fully visible and block the content behind it on the page. I cannot work
on the text because it is blocked by the submenus. My question was if there
was a way to temporarily 'disable' or 'hide' this bit of html/js so that I
could work with the content of the page in the design mode. Don't mind
working with the content in the code view, but its just easier to
add/subtract content in the design mode.

Sorry, I hope this is clearer.
 
Much clearer, thanks. It's hard to answer, though without seeing what you're
talking about. Do you have a URL we could look at? Perhaps publish it
somewhere on your live site that isn't linked, just for a bit so we can take
a look?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.
 
In Code view, place this code before the menu:

<!--webbot bot="HTMLMarkup" startspan -->

and this code after the menu:

<!--webbot bot="HTMLMarkup" endspan -->

The menu will be hidden in Design view, but will still work in Preview
and on the web.
 
Back
Top