Bug with template + navigation bar

Greetings...
I have created a site with DW CS3 and like many others before
me, i can't edit a navigation bar added to the editable area of a
page that uses my template.
I can create one and save everything but i can't modify
afterward.
I always get the "making this change would require changing
code that is locked by a template..." window.
Thanks for any help

It's quite simple, but we would need to know how you have
built your
navigation, and what your skill level is with HTML and CSS
first. Can you
post a link to the page, and tell us how well you know the
underlying
technology?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Liam McGrath" <[email protected]> wrote in
message
news:gkia5r$a39$[email protected]..
> Hello, I?m new to dreamweaver so please excuse me for
what may be a stupid
> question. I have previously used golive, now using dw
cs3. I have created
> a
> site based on a template file everything working fine. I
was wondering if
> there
> was any way possible of having the navigation bar
(created in the
> template)
> appear in the down or visited state when you entered a
specific page or do
> I
> have to insert a separate navigation bar in each
individual page. Can
> someone
> guide me if this is possible or has anyone any
suggestions? Thanks
>

Similar Messages

  • Altering text on 'template' navigation bars

    Is there any way in iWeb 9 to alter the text - font, color, size - in the template navigation bars. I remember it wasn't possible in earlier versions.
    I know I can create my own navigation bar, but then there is no automatic process when building the separate pages (other than hand copying the navigation bar from page to page).
    All ears,
    Ben

    It can be done, but it means altering javascript code - how are you at doing that?
    Do a search of the site and there have been lots of questions relating to how to alter the page template nav bars over the past month - lots should come up and just have a look at the code that has been posted.
    You either do this or build your own text based nav bar. I know it is a little more fiddly but does not really take that long - I build my own all the time for both my sites and I don't find it time consuming - you can always just build one page and duplicate to save time.

  • Lr4 re-occuring bug with Tethered Capture bar disappearing

    In Lr4 64bit Win7 re-occuring bug with Tethered Capture Bar disappearing after deleting a picture in library.  The only way to get it back is to Stop and Start Tethered Capture.  Is there a fix for this?

    Hi marketbreak.  If you can reproduce it reliably, can I get you to post this on the Official Feature Request/Bug Report Forum where your reported can be tracked properly please?  Real bugs can easily get lost in the volume of threads on this user to user forum.

  • Problem with custom navigation bar

    I'm trying to create a custom left navigation bar with adaptive tag. when user click on the link it will direct to a pagelet which is created with page template. How can I do it? I don't understand what is pt:objectid? Where can I look for answer? I just need a simple example. Thank you.

    You can get the object id from the "Edit this Community" feature under "My Communities" then look in "properties and names". If you look in the address bar you could also see the objid in there (objId=1234). I was having problems with this too.
    What I did was use the ptdata tag like this:
    <div id="topNav">
    <pt:ptdata.currentcommunityiddata pt:id="currcomm" />
    <pt:ptdata.subcommunitiesdata pt:commid="1234" pt:id="subcommunityPages" />
    <ul>
    <pt:standard.choose>
    <pt:standard.when pt:test="isMatch" pt:str1="$currcomm.objid" pt:str2="3217">
    <li class="down">
    </pt:standard.when>
    <pt:standard.otherwise>
    <li>
    </pt:standard.otherwise>
    </pt:standard.choose>
    <pt:standard.openerlink pt:objectid="3217" pt:classid="512" pt:mode="2">Home</pt:standard.openerlink>
    </li>
    <pt:logic.foreach pt:data="subcommunityPages" pt:var="varCommunityPage">
    <pt:standard.choose>
    <pt:standard.when pt:test="isMatch" pt:str1="$currcomm.objid" pt:str2="$varCommunityPage.objid">
    <li class="down">
    </pt:standard.when>
    <pt:standard.otherwise>
    <li>
    </pt:standard.otherwise>
    </pt:standard.choose>
    <pt:core.html pt:tag="a" href="$varCommunityPage.url" title="$varCommunityPage.title">
    <pt:logic.value pt:value="$varCommunityPage.title"/>
    </pt:core.html>
    </li>
    </pt:logic.foreach>
    </ul>
    </div></p>
    <p>This is for a community that has subcommunities. you could also do the same thing with pages instead.
    Short explaination:
    This line sets up a data object for the current community data and assigns it the variable name "currcomm":
    <pt:ptdata.currentcommunityiddata pt:id="currcomm" /></p>
    <p>This line gets the subcommunities for a particular community (in this case commid="1234" ). You specify which community with the pt:commid.
    <pt:ptdata.subcommunitiesdata pt:commid="1234" pt:id="subcommunityPages" /></p>
    <p>I used a <ul> for it but you could really do it any way you want.</p>
    <p>I added a static "home" tab that will always link to my top level page of the community. this is optional and there may be a better way of doing it:
    <pt:standard.choose>
    <pt:standard.when pt:test="isMatch" pt:str1="$currcomm.objid" pt:str2="3217">
    <li class="down">
    </pt:standard.when>
    <pt:standard.otherwise>
    <li>
    </pt:standard.otherwise>
    </pt:standard.choose>
    <pt:standard.openerlink pt:objectid="3217" pt:classid="512" pt:mode="2">Home</pt:standard.openerlink>
    </li></p>
    <p>for a link to your page you can use this tag. You can get both the objectid and classid from the "properties and names" page as mentioned above. pt:mode is how/what should be displayed (The action of the link (Opener mode). 1 = Open, 2 = View, 3 =ViewMeta.)
    <pt:standard.openerlink pt:objectid="3217" pt:classid="512" pt:mode="2">
    I also have a choose in there to test if the current community you're in is the same as the community of the link. That lets me add a class="down" for a down state. </p>
    <p>This loops through all the subcommunities and builds a link in this format <li>TITLE OF COMMUNITY</li>. </p>
    <p><pt:logic.foreach pt:data="subcommunityPages" pt:var="varCommunityPage">
    <pt:standard.choose>
    <pt:standard.when pt:test="isMatch" pt:str1="$currcomm.objid" pt:str2="$varCommunityPage.objid">
    <li class="down">
    </pt:standard.when>
    <pt:standard.otherwise>
    <li>
    </pt:standard.otherwise>
    </pt:standard.choose>
    <pt:core.html pt:tag="a" href="$varCommunityPage.url" title="$varCommunityPage.title">
    <pt:logic.value pt:value="$varCommunityPage.title"/>
    </pt:core.html>
    </li>
    </pt:logic.foreach>
    </p>
    <p>Hopefully that is what you're trying to do.
    Like I said, you can use the same process for pages instead of subcommunities by using the communitypagesdata tag instead of subcommunitiesdata. You could also combine the two and list all the subcommunities with a foreach loop and inside each loop get the pages from the communitypagesdata with the commid set to the subcommunity objid for that subcommunity.</p><p>
    THis document is very helpful with PT tags... [url http://e-docs.bea.com/alui/devdoc/docs60/References/API_Libraries/TagDocs/index.html]http://e-docs.bea.com/alui/devdoc/docs60/References/API_Libraries/TagDocs/index.html</p>
    -Matt
    Edited by thelimpingtoad at 03/14/2008 5:55 AM

  • Template navigation bar

    Hello, I’m new to dreamweaver so please excuse me for
    what may be a stupid question. I have previously used golive, now
    using dw cs3. I have created a site based on a template file
    everything working fine. I was wondering if there was any way
    possible of having the navigation bar (created in the template)
    appear in the down or visited state when you entered a specific
    page or do I have to insert a separate navigation bar in each
    individual page. Can someone guide me if this is possible or has
    anyone any suggestions? Thanks

    It's quite simple, but we would need to know how you have
    built your
    navigation, and what your skill level is with HTML and CSS
    first. Can you
    post a link to the page, and tell us how well you know the
    underlying
    technology?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Liam McGrath" <[email protected]> wrote in
    message
    news:gkia5r$a39$[email protected]..
    > Hello, I?m new to dreamweaver so please excuse me for
    what may be a stupid
    > question. I have previously used golive, now using dw
    cs3. I have created
    > a
    > site based on a template file everything working fine. I
    was wondering if
    > there
    > was any way possible of having the navigation bar
    (created in the
    > template)
    > appear in the down or visited state when you entered a
    specific page or do
    > I
    > have to insert a separate navigation bar in each
    individual page. Can
    > someone
    > guide me if this is possible or has anyone any
    suggestions? Thanks
    >

  • Need help with a navigation bar

    I am new to Dreamweaver,working on my first page. This is my first post too, so I hope that I am doing this correctly.  I created a set of navigation bars last night. It is a vertical bar with 9 items.  It looked great except the items were not centered in the sidebar.  I was experimenting tonight and now 8 of the "items"/titles have disappeared.  The list is basically gone except for the one title.  When I look in the code view all the items are listed. I hate to delete the page and start over.  Does anyone have any ideas?

    It sounds like you're using CSS to make a list of links turn into a navigation bar. If so, is there a problem with you're CSS?
    It would help if you could either attach the files or give us a link to the site.
    Nick

  • SS8: bug with templates & static?

    Hello,
    following code doesn't compile with SS8:
    class A
    public:
    A() {}
    template < typename T >
    inline T & f()
    static typename T def();
    return def;
    template < typename T >
    inline void g()
    T & def = f<T>();
    void h()
    g<A>();
    The errror is
    "staticref.cxx", line 10: Error: Initializing A& requires an lvalue.
    Is this a bug?
    TIA
    My environment is:
    $CC -V
    CC: Sun C++ 5.5 Patch 113817-09 2004/08/03
    $uname -a
    SunOS dev420 5.8 Generic_108528-11 sun4u sparc SUNW,Ultra-80

    Thank you for the quick reply!
    First, I have to say that my core problem
    is compiling the boost (1_31_0) library
    Spirit.
    The real error is
    ../boost_1_31_0/boost/spirit/core/non_terminal/impl/grammar.ipp", line 279: Error: Initializing base_expression_grammar<general_expression_grammar>::definition<boost::spirit::scanner<const char*, boost::spirit::scanner_policies<boost::spirit::skipper_iteration_policy<boost::spirit::iteration_policy>, boost::spirit::match_policy, boost::spirit::action_policy>>>& requires an lvalue.
    1 Error(s) and 1 Warning(s) detected.
    With my code, I tried to show the problem in a condensed form,
    but it doesn't point out the real problem, which is far more subtile, I think.
    Further, I have few other problems compiling this libray with SS8 for which I have found my
    own workarounds. The authors of Spirit made the decision to not support any compiler
    "not conform" to the standard for further development.
    So the final question to answer is: Is it planned to support the Boost libraries in the near future?
    Would be nice to get a definite answer in order to plan myself's further development.

  • Learning - Problems with Horizonal Navigation Bar

    Everything looks OK until I preview it in Firefox and then the bars blink and don't expand properly....can anyone see what is wrong here,  thanks so much
    <ul id="MenuBar1" class="MenuBarHorizontal">
                <li><a href="#">Home</a>              </li>
                <li><a href="../Seminary Life.html" class="MenuBarItemSubmenu">Seminary Life</a>
                  <ul>
                    <li><a href="../Tour.html">Tour of Seminary</a></li>
                    <li><a href="../Formation.html" class="MenuBarItemSubmenu">Formation Process</a>
                      <ul>
                        <li><a href="../Human.html">Human</a></li>
                        <li><a href="../Intellectual.html">Intellectual</a></li>
                        <li><a href="../Pastoral.html">Pastoral</a></li>
                      </ul>
                    </li>
                  </ul>
                </li>
                <li><a class="MenuBarItemSubmenu" href="../Admissions.html">Admissions</a>
                  <ul>
                    <li><a class="MenuBarItemSubmenu" href="../Degrees.html">Degrees Offered</a>
                      <ul>
    <li><a href="#">Item 3.1.2</a></li>
                      </ul>
                    </li>
                    <li><a href="../Course List.html">Sample Course List</a></li>
                    <li><a href="../Dioceses.html">Sending Dioceses</a></li>
                    <li><a href="../Application.html">Application Process</a></li>
                  </ul>
                </li>
                <li><a href="../People.html" class="MenuBarItemSubmenu">People</a>
                  <ul>
                    <li><a href="../Faculty.html">Faculty</a></li>
                    <li><a href="../Staff.html" class="MenuBarHorizontal">Staff</a></li>
                    <li><a href="../Seminarians.html">Seminarians</a></li>
                    <li><a href="../Board.html">Board of Advisors</a></li>
                    <li><a href="../Alumni.html">Alumni</a></li>
                  </ul>
                </li>
                <li><a href="../News.html" class="MenuBarItemSubmenu">News and Events</a>
                  <ul>
    <li><a href="../Calendar.html">Calandar</a></li>
                    <li><a href="../Mass.html">Public Mass Schedule</a></li>
                  </ul>
                </li>
                <li><a href="../Auxilliary.html" class="MenuBarItemSubmenu">Trinitary Auxilliary</a>
                  <ul>
                    <li><a href="../Auxilliary Membership.html">Membership</a></li>
                    <li><a href="../Auxilliary Activities.html">Activities</a></li>
                  </ul>
                </li>
                <li><a href="../Support.html" class="MenuBarItemSubmenu">Support The Seminary</a>
                  <ul>
                    <li><a href="../Donations.html">Donations</a></li>
                    <li><a href="../Welcome Dinner.html">Welcome Dinner</a></li>
                    <li><a href="../Prayer.html">Prayer</a></li>
                  </ul>
                </li>
                <li>
                  <div align="center"><a href="../Contact.html">Contact Us/Map</a></div>
                </li>
                <li>
                  <div align="center"><a href="../Links and Privacy.html">Additional Links and Privacy Statement</a></div>
                </li>
              </ul>

    Thanks - unfortunately, I can't send the URL since it isn't a published site.  I have tried taking it out and putting it back and still can't do it.  Here is the template HTML....
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
    <HEAD>
    <!-- #BeginEditable "doctitle" -->
    <TITLE>Dreamweaver Template</TITLE>
    <!-- #EndEditable -->
    <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <LINK rel="stylesheet" href="file:///C|/Documents and Settings/pat/Desktop/Website/HTS Demo/18/general.css" type="text/css">
    <!-- #BeginEditable "metaTags" -->
    <META name="keywords" content="">
    <META name="description" content="">
    <!-- #EndEditable -->
    <style type="text/css">
    body {
        background-color: #DBDBDB;
        background-image: url(../Images/Chapel-UpperWindow1.jpg);
        background-repeat: repeat;
        margin-left: 75px;
        margin-right: 75px;
        margin-top: 50px;
        margin-bottom: 50px;
    </style>
    <style type="text/css">
    a:link {
        color: #900;
    a:visited {
        color: #000;
    h1 {
        color: #900;
    h2 {
        color: #900;
    h3 {
        color: #900;
    h4 {
        color: #900;
    </style>
    <script src="../Demo/Templates/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../Demo/Templates/SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    </HEAD>
    <BODY bgcolor="#DBDBDB">
    <TABLE width="956" border="0" align="center" id="maintable">
      <TR bgcolor="#DBDBDB">
        <TD width="950" height="222" valign="bottom">
          <TABLE width="950" border="0" cellpadding="0" cellspacing="0">
            <TR>
              <TD width="950" bgcolor="#DBDBDB"><IMG src="../Images/name.gif" alt="" width="626" height="111"><img src="../Images/Outside 5-2010 cropped and edited.jpg" alt="Outside of Building" width="321" height="111" border="0"></TD>
            </TR>
            <TR>
              <TD height=1
              02
              " bgcolor="#DBDBDB"><p><br>
              </p>
                <ul id="MenuBar1" class="MenuBarHorizontal">
                  <li><a href="../Demo/Index.html">Home</a>              </li>
                  <li><a href="../Demo/Seminary Life.html" class="MenuBarItemSubmenu">Seminarian Life</a>
                    <ul>
                      <li><a href="../Demo/Tour.html">Tour of Seminary</a></li>
                      <li><a href="../Demo/Formation.html" class="MenuBarItemSubmenu">Formation Process</a>
                        <ul>
                          <li><a href="../Demo/Human.html">Human</a></li>
                          <li><a href="../Demo/Intellectual.html">Intellectual</a></li>
                          <li><a href="../Demo/Pastoral.html">Pastoral</a></li>
                        </ul>
                      </li>
                    </ul>
                  </li>
                  <li><a class="MenuBarItemSubmenu" href="../Demo/Admissions.html">Admissions</a>
                    <ul>
                      <li><a href="../Demo/Degrees.html">Degrees Offered</a>                  </li>
                      <li><a href="../Demo/Course List.html">Sample Course List</a></li>
                      <li><a href="../Demo/Application.html">Application Process</a></li>
                    </ul>
                  </li>
                  <li><a href="../Demo/People.html" class="MenuBarItemSubmenu">People</a>
                    <ul>
                      <li><a href="../Demo/Faculty.html">Faculty</a></li>
                      <li><a href="../Demo/Staff.html">Staff</a></li>
                      <li><a href="../Demo/Seminarians.html">Seminarians</a></li>
                      <li><a href="../Demo/Board.html">Board of Advisors</a></li>
                      <li><a href="../Demo/Alumni.html">Alumni</a></li>
                    </ul>
                  </li>
                  <li><a href="../Demo/News.html" class="MenuBarItemSubmenu">News and Events</a>
                    <ul>
                      <li><a href="../Demo/Calendar.html">Calendar</a></li>
    <li><a href="../Demo/Mass.html">Public Mass Schedule</a></li>
                    </ul>
                  </li>
                  <li><a href="../Demo/Auxilliary.html" class="MenuBarItemSubmenu">Trinitary Auxilliary</a>
                    <ul>
                      <li><a href="../Demo/Auxilliary Membership.html">Membership</a></li>
                      <li><a href="../Demo/Auxilliary Activities.html">Activitis</a></li>
                    </ul>
                  </li>
                  <li><a href="../Demo/Support.html" class="MenuBarItemSubmenu">Support the Seminary</a>
                    <ul>
                      <li><a href="../Demo/Donations.html">Donations</a></li>
                      <li><a href="../Demo/Welcome Dinner.html">Welcome Dinner</a></li>
                      <li><a href="../Demo/Prayer.html">Prayer</a></li>
                    </ul>
                  </li>
                  <li><a href="../Demo/Contact.html">Contact Us/Map</a></li>
                  <li><a href="../Demo/Links and Privacy.html">Additional Links and Privacy Statement</a></li>
                </ul>
              <p>  </p></TD>
            </TR>
          </TABLE>
        </TD>
      </TR>
      <TR bgcolor="#DBDBDB">
        <TD width="950" valign="top"><!-- TemplateBeginEditable name="Body" -->
          <hr>
        <!-- TemplateEndEditable -->            </TR>
      <TR bgcolor="#DBDBDB">
        <TD width="950" height="130" valign="top"><P align="center" class="small"><BR>
          &copy;
          <script language="JavaScript" type="text/javascript">
    var d=new Date();
    yr=d.getFullYear();
    if (yr!=2000)
    document.write(" "+yr);
            </script>2010 All Rights Reserved<br>
          Holy Trinity Seminary        <br>
          Mailing Address: PO Box 140309, Irving, TX 75014-0309<br>
          Physcial Address:  2121 Vince Hagan Drive, Irving, TX 75062<br>
          Voice: 972-438-2212     Fax:  972-438-6530      </P></TD>
      </TR>
    </TABLE>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </BODY>
    </HTML>
    Thanks again.

  • Dreamweaver CS3 bug with templates?

    Hello,
    I am having a very major problem with a template. I am on
    Dreamweaver CS3 and my template has been created in Dreamweaver 8
    and it says in parenthesis (xhtml) - even though all my pages from
    the template are html.
    When I now make even the most minor change (even adding one
    single letter) to my template or when I try to create a new page
    from that template, the resulting pages have missing images (my
    whole top banner), but the actual template looks perfect. You can
    actually seean example of a page on a test website at
    http://ww2.itrak.com/iTRAKnouveau/
    I seem to remember I actually had this problem once before
    and I did not have it in Dreamweaver 8 but I am not sure of my
    recollection.
    Unfortunately, this time I cannot access Dreamweaver 8
    anymore... I am really hoping someone can solve this one with me!!
    Christine

    nope
    Jo
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Sounds like it's not a DW problem after all....
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "josie1one" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> There's this:
    >>
    >> body {
    >> background-color: #d3d5d6;
    >> margin-top: 0px;
    >> background-image: url(); <----------- no image
    defined
    >> background-repeat: repeat-x;
    >>
    >> and
    >>
    http://ww2.itrak.com/iTRAKnouveau/images/header_print.jpg
    >>
    http://ww2.itrak.com/iTRAKnouveau/images/header_itrack_4_01.jpg
    through
    >> to 4_24 don't appear to be on the server - Not
    Found. Can you check your
    >> site definition?
    >>
    >> --
    >> Jo
    >>
    >>
    >>
    >>
    >> "Strateege Health"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Hello,
    >>> I am having a very major problem with a
    template. I am on Dreamweaver
    >>> CS3 and
    >>> my template has been created in Dreamweaver 8
    and it says in parenthesis
    >>> (xhtml) - even though all my pages from the
    template are html.
    >>> When I now make even the most minor change (even
    adding one single
    >>> letter) to
    >>> my template or when I try to create a new page
    from that template, the
    >>> resulting pages have missing images (my whole
    top banner), but the
    >>> actual
    >>> template looks perfect. You can actually seean
    example of a page on a
    >>> test
    >>> website at
    http://ww2.itrak.com/iTRAKnouveau/
    >>> I seem to remember I actually had this problem
    once before and I did not
    >>> have
    >>> it in Dreamweaver 8 but I am not sure of my
    recollection.
    >>> Unfortunately, this time I cannot access
    Dreamweaver 8 anymore... I am
    >>> really
    >>> hoping someone can solve this one with me!!
    >>> Christine
    >>>
    >>
    >>
    >

  • Modifying a navigation bar in a template

    My previous question was so muddled up that I found it hard
    to understand the question. I will try again.
    What I want to do is create a template with a navigation bar
    - in this nav bar, I will have several categories (buttons e.g.
    range 1, range 2, range 3, etc.)
    can I add another category (range 4) to the original template
    and when I do, will this update all pages that used the existing
    template?
    all of the buttons are linking to other pages (which in turn
    will have this naigation bar) - I hope this is a bit clearer.
    Thanks for help so far - much appreciated.
    MC

    If your navigation elements are not within editable regions,
    then changes to
    them within the template WILL propagate to all current child
    pages.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "MichaelCo" <[email protected]> wrote in
    message
    news:elfk2t$i6m$[email protected]..
    > My previous question was so muddled up that I found it
    hard to understand
    > the
    > question. I will try again.
    >
    > What I want to do is create a template with a navigation
    bar - in this nav
    > bar, I will have several categories (buttons e.g. range
    1, range 2, range
    > 3,
    > etc.)
    > can I add another category (range 4) to the original
    template and when I
    > do,
    > will this update all pages that used the existing
    template?
    > all of the buttons are linking to other pages (which in
    turn will have
    > this
    > naigation bar) - I hope this is a bit clearer.
    > Thanks for help so far - much appreciated.
    > MC
    >

  • Navigation Bar Problem

    Hello
    I have a problem with my navigation bar, took a page out, and so it trimmed the bar down, but i want to take it a bit more because all the other pages look off centre. However when i do this on one page, it does not replicate what i done to the bar on all of my other pages.
    Any advice?
    Thanks
    Dan

    Are you talking about a navigation bar that you have made yourself or the navigation bar that comes with the page template?
    If you have made your own nav bar, then of course you can cut and paste and delete what is there.
    If you are using the nav bar that comes with the page template, then you cannot cut and paste or delete it, but you can alter the width of where it is on the page. You need to look and see on the first page and see if these settings are correct. Make a note of the settings and go through your site and alter every page to those settings and then they should all look the same.
    It all depends on which nav bar you are using.

  • WebUI with minimized navigation panel

    Hi all,
    Could you please share any ideas regarding the starting webui with the navigation bar in closed/minimized state?
    We were searching through settings in Navigation Bar profile but not succeeded yet=(
    maybe there is a tag in url command line or it can be done via skin CSS  templates modification?
    thank you in advance,
    Vladimir

    1) Go to the Object Navigator (transaction SE80)
    2) Search for BSP application "CRMCMP_NAVBAR"
    3) Go to the views node "Picture"
    4) Edit page "Picture.html" adding string lv_navbar_state = 'HIDDEN'.
    5) Save page, purge browser cash and restart WebUI
    Credits goes to Nicolas Busson answer:
    Start WebUI with collapsed navigation bar using URL parameter

  • Page numbers navigation bar instead of the standard first-next-previous-last

    I want to add page numbers to my navigationbar instead of the standard "first next previous last".
    For example I have a repeat region with a navigation bar (standard) I have 7 records per page and I would like it to say at the bottom:
    1 2 3 4 5 ect. Is there any way I can code this up with php or with dreamweaver or is there an other way to do this.
    Any help welcome

    You can do it in DW
    Add the below code
    <div class="pages">
    <ul>
    <li class="prev"><a href="#">&laquo; Previous</a></li>
    <li><a href="#">1</a></li>
    <li><a href="#">2</a></li>
    <li class="ellipsis"><strong>&hellip;</strong></li>
    <li><a href="#">6</a></li>
    <li class="current"><strong>7</strong></li>
    <li><a href="#">8</a></li>
            <li class="ellipsis"><strong>&hellip;</strong></li>
    <li><a href="#">14</a></li>
    <li><a href="#">15</a></li>
    <li class="next"><a href="#">Next &raquo;</a></li>
    </ul>
    </div>
    style it as
    .pages{display:block; width:100%; text-align:center; clear:both; font-family:Verdana, Geneva, sans-serif;}
    .pages ul{margin:0; padding:0; list-style:none;}
    .pages li{display:inline;}
    .pages strong{font-weight:normal;}
    .pages .next{margin:0;}
    .pages a,.pages .current strong, .pages .ellipsis strong{display:inline-block; padding:2px 6px; margin:0 2px 0 0;}
    .pages a{border:1px solid #DFDFDF;}

  • Navigational Bar Works Perfect In iWeb, But Not Online...

    To whom it may concern,
      I am having an issue with the navigational bar working online with my website. In iWeb everything looks and works perfect when tested and all hyperlinks are active, but when it is published the Home page is all that comes up and the Navigational menu will not highlight, show rollover, turn the cursor into a hand, or open the other pages. I have tried to fix the issue, unsuccesfully, by arraging differently, removing the custom toolbar, making sure nothing is layered improperly, etc..getting frustrated and need help.
       The Website is: http://wicked-waters.com/Wicked_Waters/Home.html
    Thank you in advance!

    Yes, frustration. iWeb has that effect on people.
    Anyway, this is covering the links :
    http://wicked-waters.com/Wicked_Waters/Home_files/WickedWatersCompassWorksOfArts eaweedgrey.png
    Move it down and/or remove the white space.
    And read this for an explanation and a solution :
    http://www.wyodor.net/Tutorials/iWebDemo/z-Index.html

  • I have a portal home page with a navigation

    I have a portal home page with a navigation bar that is accessible to the public. This site also contains information that can only be accessed by privileged user. Therefore, I have a login/logout icon on the page.
    The problem that I am currently facing is that when I go to the page without logging in, the navigation bar is not visible. The only thing that is visible on the navigation bar are the links but without the labels. Labels or texts that are not links are visible. When I log in, only then is the navigation bar and its contents visible.
    Can someone help me resolve this problem? Is it a "style" problem or is it "security" or "rights" problem?

    Go to Settings in Chrome.
    Then in On Startup either check the Open the New Tap pag, Continue to where left off, or edit Open a specific or set of pages. It appear you have the last one checked and it is opening up that page.

Maybe you are looking for

  • Data Curruption and Static methods

    public static void myMethod( String Argument)      int i = 0 ; What are the chances of data corruption in this static method? IF there are chances of data corruption, am I corrupt in saying that chances of data corruption for argument and Variable i

  • How to process TR created for 122 mov ?

    Dear All, How to process the TR created in the background for 122 mov. through QA module ? I have not processed the TR created for the GR document.  When I try to process it, the open qty in the TR is the difference between (Total GR Qty - Return Qty

  • Is it possible to code a store in a secure zone so it acts like a POS system?

    We have a small theatre and want to use Bc for our online store to sell tickets and we want to hear if it is possible to code a secure zone to the extent that we can use it as a POS system? We don't want to pay for more than one system and it will be

  • Remove Gender "Unknown" in ESS ERP 2004

    Hi , We try to remove the Gender "Unknown" in the ESS WebDynpro screen, it seems to be dynamical been generate from some value list . We did try to remove from the back-office in the domain GESCH "Gender key" , that changed the back-office, but still

  • Migrating Comments and Replies

    Solving this problem is critical to the workflow... I manage design review for a large CA state agency. We have been using the Acrobat shared reviews for about a year and a half with great enthusiasm. The workflow requires the migration of comments a