There are a couple of things you could do. The first is to add a line to
each of an autoopen and autonew macro (create the macros if necessary) in
normal.dot, which will force the web toolbar on, against its better
instinct, each time you open or create a document:
Sub AutoOpen()
CommandBars("Web").Visible = True
End Sub
Sub AutoNew()
CommandBars("Web").Visible = True
End Sub
I have a personal toolbar, that I park amongst the others, to which I have
added toggles to the toolbars I use regularly - eg Forms, MailMerge, Review
etc. These simply operate a variation of the macro command above to toggle
the appropriate bar on/off
Sub ToggleWebBar()
With CommandBars("Web")
.Visible = Not .Visible
End With
End Sub
As you expressed an interest in the 'back' command. You could add this
command to a standard toolbar (using tools > customize)and have it available
regdarless of whether the Web bar is displayed.
http://www.gmayor.com/installing_macro.htm will explain how to use the macro
code.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
Web site
www.gmayor.com
Word MVP web site
www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>