Logout navigation Bar related

Hi,
I want when i click on nevigation bar logout link. my logout time should go into the database.
Eg if I login at 1 'o clock and made logout at 2'o clock then logout time should go into the table.
user login detail is already into the table like serialno,userid,logintime,date,username and so on. i have to just enter the logout time and status in table.this is my table in which login details enter.
CREATE TABLE  "USER_RECORD"
   (     "SERIAL" NUMBER NOT NULL ENABLE,
     "USER_ID" NUMBER,
     "LOGIN_TIME" VARCHAR2(20) NOT NULL ENABLE,
     "DTE" DATE,
     "LOGOUT_TIME" VARCHAR2(20),
     "STATUS" VARCHAR2(1),
     "USRNAME" VARCHAR2(50),
      CONSTRAINT "USER_RECORD_PK" PRIMARY KEY ("SERIAL") ENABLE
   )i have done this by creating the logout button and written process there and its working.
i want to do same task with nevigation bar logout link
Please help me if it possible
i am sending you the code which i written to do the entry of user logout.
declare
t varchar2(50);
BEGIN
select to_char(cast(systimestamp at time zone 'Asia/Calcutta' as date),' hh24:mi:ss') into t from dual;
UPDATE USER_RECORD
SET LOGOUT_TIME = t,STATUS ='Y'
WHERE SERIAL = (SELECT MAX(SERIAL) FROM USER_RECORD WHERE USER_ID = :P50_USER_NAME);
END;Thanks & Regards
Nisha
Edited by: Nisha Rani on Aug 18, 2010 12:16 AM

For this you may have to create a Logout Page. Much like what happens in Apex itself, when you logout you land on a Logout page not the Login page.
Check this out.
http://dgielis.blogspot.com/2007/07/oracle-apex-behind-scenes-logout.html
Regards,

Similar Messages

  • Clear Cache when I hit logout navigation bar item

    I want to clear all of my cache from the browser once the user logout.
    Please advise me.
    Thanks

    Hi Tony,
    I didn't get what you exactly mean.
    I have an external URL for the logout url.
    When the users clicks the logout link from the navigation bar in the application then I want to clear all of my cache from the application.
    Can you be more specific please.

  • How can I use my Html/CSS Navigation bar to control an Edge Stage?

    I have an HTML/CSS navigation bar set up in my EDGE created page. The Navbar is not created in edge. I would like to use these buttons to control the stage. 
    Inside the stage the main timeline has labels and stop actions every 1.5 secs to create a horizontally sliding site.
    The labels are as follows: home, work, blog, profile, and contact. I can easily use a symbol created inside edge for example:
    sym.play("home");
    and animate a 6000px width symbol across my 1000px stage in 1000px increments.
    I do not want to use a symbol inside of edge to do this because I cannot create the effect that the html/css navbar has on mouseover inside of edge.
    So I am interested in knowing if I can use this bar to control my main timeline so I don't have to sacrifice design for functionality.
    currently the link list is setup with the standard hyperlink. What code would I use to play the stage on click of the html navbar?
    Many thanks to anyone who can help with this!
    Here is the code for the navbar:
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    Full HTML:
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8" src="workapp_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-57204389 { visibility:hidden; }
                  .block-menu {
                                  display: block;
                                  background: #000;
                        .block-menu li {
                                  display: inline-block;
                        .block-menu li a {
                                  color: #fff;
                                  display: block;
                                  text-decoration: none;
                                  font-family: 'Passion One',Arial,sans-serif;
                                  -webkit-font-smoothing: antialiased;
                                  -moz-font-smoothing: antialiased;
                                  font-smoothing: antialiased;
                                  text-transform: uppercase;
                                  overflow: visible;
                                  line-height: 20px;
                                  font-size: 24px;
                                  padding: 15px 10px;
                        /* animation domination */
                        .three-d {
                                  -webkit-perspective: 200px;
                                  -moz-perspective: 200px;
                                  perspective: 200px;
                                  -webkit-transition: all .07s linear;
                                  -moz-transition: all .07s linear;
                                  transition: all .07s linear;
                                  position: relative;
                                  .three-d:not(.active):hover {
                                            cursor: pointer;
                                  .three-d:not(.active):hover .three-d-box,
                                  .three-d:not(.active):focus .three-d-box {
                                            -moz-transform: translateZ(-25px) rotateX(90deg);
                                            -webkit-transform: translateZ(-25px) rotateX(90deg);
                                            -o-transform: translateZ(-25px) rotateX(90deg);
                                            transform: translateZ(-25px) rotateX(90deg);
                        .three-d-box {
                                  -webkit-transition: all .3s ease-out;
                                  -moz-transition: all .3s ease-out;
                                  -ms-transition: all .3s ease-out;
                                  -o-transition: all .3s ease-out;
                                  transition: all .3s ease-out;
                                  -webkit-transform: translatez(-25px);
                                  -moz-transform: translatez(-25px);
                                  -o-transform: translatez(-25px);
                                  transform: translatez(-25px);
                                  -webkit-transform-style: preserve-3d;
                                  -moz-transform-style: preserve-3d;
                                  -ms-transform-style: preserve-3d;
                                  -o-transform-style: preserve-3d;
                                  transform-style: preserve-3d;
                                  pointer-events: none;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                        .front {
                                  -webkit-transform: rotatex(0deg) translatez(25px);
                                  -moz-transform: rotatex(0deg) translatez(25px);
                                  -o-transform: rotatex(0deg) translatez(25px);
                                  transform: rotatex(0deg) translatez(25px);
                        .back {
                                  -webkit-transform: rotatex(-90deg) translatez(25px);
                                  -moz-transform: rotatex(-90deg) translatez(25px);
                                  -o-transform: rotatex(-90deg) translatez(25px);
                                  transform: rotatex(-90deg) translatez(25px);
                                  color: #FFE7C4;
                        .front, .back {
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  background: black;
                                  padding: 15px 10px;
                                  color: white;
                                  pointer-events: none;
                                  -moz-box-sizing: border-box;
                                  box-sizing: border-box;
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body>
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    <div  id="Stage" class="EDGE-57204389">
    </div>
    </body>
    </html>

    I've come across this from the Edge API:
    Edge.getComposition(compId)
    Anyone having trouble with this same issue should try this:
    var targetComp = AdobeEdge.getComposition('TARGETCOMPID');
       targetComp.getStage().play();
    in their trigger or event handler.
    How I got it to work:
    <li><a href="javascript:var targetComp = AdobeEdge.getComposition('EDGE-57204389');
       targetComp.getStage().play();" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>

  • Muse: How to set up a bilingual site with 2 different navigation bars?

    Hi,
    I would like to create a website in 2 languages, desktop and mobile version. The structure of the page remains the same for each language. How should I create the site so that I get one navigation bar for the first language and a second one for the other language? Is it feasible in Muse?
    Thanks for any hint in advance.
    Regards,
    christine

    Hi Christine,
    Some related threads,
    Muse: Multilingual site?
    How can i create a multilingual website?
    how to set up a multilingual website with Adobe Muse and push it live to Adobe Business Catalyst
    Do let me know if you have any question.

  • Horizontal Navigation Bar

    I'm using the Spry horizontal menu bar, and I've got a problem.
    In IE7, but not in Firefox or Safari or even IE8, the hover state is apparently only active for the text in the submenus, not the entire 'button'.  That is, the list item is styled to look like a button, it's 12 ems wide, the text for most of the items doesn't fill the entire button.  If one puts their mouse over the 'empty' part of the button, it seems that the 'hover' state is lost and the submenu disappears. In the image below, if you mouse over Northside, but leave the mouse on the right side of the 'button', the menu will quickly disappear if using IE7; it stays put when using the other browsers.
    Very annoying to the user (and to this developer). 
    The site is http://www.acblunit174.org
    I wonder if anyone has an explanation?  Is this a known problem with a known workaround?
    The css file is included below.
    Any advice would be appreciated.
    Thanks
    Bert Onstott
    713-851-1511.
    [email protected]
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        padding:             0;
        list-style-type:     none;
        font-size:           11px;   /* changed font size to 11px */
        cursor:              default;
        width: 900px;
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index:             1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin:              0;
        list-style-type:     none;
        font-size:           100%;
        position:            relative;
        text-align:          left;
        cursor:              pointer;
        width:               auto;     /* set the width to auto for the top level navigation bar items so they fit the text. */
        float:               left;
        padding:             0;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin:              0;
        padding:             0;
        list-style-type:     none;
        font-size:           100%;
        z-index:             1020;
        cursor:              default;
        position:            absolute;
        width:               12em;
        left:                -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left:                auto;
        clear:               left;
    /* Menu item containers are seet to 14 ems */
    ul.MenuBarHorizontal ul li
        width:               12em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position:            absolute;
        margin:              -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left:                auto;
        top:                 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Menu items are a pale green block with padding, no text decoration and what amounts to      */
    /* and outset border.  Specifying 'outset' as the border doesn't work in IE with color CCCC99, */
    /* so it has to be simulated by specifying different left, right, top and bottom colors.       */
    ul.MenuBarHorizontal a
        display:             block;   /* causes menu items to appear horizontally */
        cursor:              pointer;
        background-color:    #ECE9D8; /* light green */
        color:               #000000; /* black */
        text-decoration:     none;
        border-top-width:    3px;
        border-right-width:  3px;
        border-bottom-width: 3px;
        border-left-width:   3px;
        border-top-style:    solid;
        border-right-style:  solid;
        border-bottom-style: solid;
        border-left-style:   solid;
        border-top-color:    #CCCC99;  /* dark greem */
        border-right-color:  #666600;  /* light green */
        border-bottom-color: #666600;  /* light green */
        border-left-color:   #CCCC99;
        padding-top:         3px;
        padding-right:       4px;
        padding-bottom:      3px;
        padding-left:        3px;
        margin: 1px;
    /* Menu items that have mouse over or focus have an olive green background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color:    #999966;
        color:               #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with an olive green background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color:    #999966;
        color:               #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarDown.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(SpryMenuBarRight.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    /*ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    *//* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
    /*        background: #ECE9D8;*/

    I wonder if anyone can tell me easily how to make the submenu's under the horizontal menu bar also appear horizontally?
    This question is more suited to the Spry forum.

  • Iweb 08 installed but now navigation bar and other properties aren't showin

    iweb 06 was working beautifully. Then loaded iweb 08 and published. Now the navigation bar doesn't show in most browsers and other letter shadowing and picture shadowing aren't showing up as well. I've checked to be sure the navigation isn't turn off. I've published all and I've published singularly. Still no luck.
    Help please. Folks can't get to my site and navigate and see how nice it is...
    J.

    More details from another example:
    To illustrate what I see at the PC at work I made some sreenshots from my site:
    http://www.hasselo.eu/photography/Links_files/HasseloEuHome.jpg
    http://www.hasselo.eu/photography/Links_files/HasseloEuGalleries.jpg
    Since I made the screenshots, the site was updated with new content, but the problems are still the same.
    As you can see:
    -Navigation bar missing
    -Reflections missing
    I have no problems with other websites, therefore I assume that this is iWeb related and Apple should produce a fix for this.

  • Invisible text in navigation bar

    When I type something in the navigation bar, I get a list of related pages that I have visited before. The problem is that in Nightly 18, I can see the pages' icons but not the text. All I get is a gray rectangle. If I use the keyboard or the mouse to select one of the invisible results, I got directed correctly to the page. This happens both in Arch linux and in Ubuntu 12.04

    That usually indicates a problem with the font that is used and isn't working or missing.
    Try to use the DOM Inspector to see which font is used in that section.
    *DOM Inspector: https://addons.mozilla.org/firefox/addon/dom-inspector-6622/
    * https://developer.mozilla.org/En/DOM_Inspector
    * https://developer.mozilla.org/en/Introduction_to_DOM_Inspector
    The DOM Inspector (DOMi) has a menu item (Search > Select Element By Click) and a button to "Find a node to inspect by clicking on it" (left icon on the toolbar).
    * open the browser window in the DOMi (File > Inspect <b>Chrome</b> Document) and choose the first from the list.
    * click the "Find a node to inspect by clicking on it" button and use the keyboard (Alt Tab) or the Task bar to go back to the browser window (do not click in the browser window other than the title bar).
    * click that element with the mouse and keep the button pressed until you see a red border to indicate the the DOMi has located that element in the DOM tree.
    You need to use the keyboard to get access to the location bar of the Firefox window (Ctrl+L) and type something or press the Down key to open the drop down list.<br />
    Once the list is open then you can click an entry and you should see the red focus ring.
    Then you can check in the right pane in the DOM Inspector which font is used:
    * click the icon with the drop marker in the header and choose "Used Font Faces"

  • External allications on navigation bar ...urgent

    I want to have all my external applications..
    on my navigation bar in my content area, so that they can be accessed on the same page along with other folders.
    How should I do it?

    Pam,
    another easy way is to make copies of the urls for the extenal apps. If you move your mouse over the application links in the related portlet you get the url.
    If you pick up the url, you have more opportunities to integrate the links into your navigation bar layouts.
    Ingo

  • Upon installing firefox 10, my runescape toolbar is now above the navigation bar. i would like to be able to return it to its rightful place below the bookmarks bar. suggestions?

    upon installing firefox 10, my runescape toolbar is now above the navigation bar. i would like to be able to return it to its rightful place below the bookmarks bar.

    -> [[How do I customize the toolbars?]]
    Check and tell if its working.
    Not related to your problem but some of your Firefox Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • "Reload current page/Stop loading current page" seems to be missing from Navigation Bar customization. How do I get it back?

    I am loading Firefox on a new computer, and I can't find the Navigation Bar button for "Reload current page/Stop loading current page". Is there any way to get it back as a choice under Navigation Bar customization or to create a new function? CTRL-R used to work for this function, but I'd like to have the button on the Navigation Bar.

    View Page Source has been moved to the "Web Developer" sub-menu. You can use any of the following to View Page Source:
    *CTRL+U
    *Right-click a blank area of the page and choose "View Page Source"
    *Firefox button > Web Developer > View Page Source
    *Using the Menu Bar: Tools > Web Developer > Page Source
    *ALT+T+W, release ALT key, letter O key
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • 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.

  • Youtube widget and Sticky Navigation Bar

    The pictures below include my sticky navigation bar that Should overlay all other objects in the muse webpage.   It does this with all objects, except for the youtube video placed by using the widget object.
    How can I resolve this issue?   Youtube is the last object in the layers menu.
    Any help would be appreciated. Thank you!

    Hello,
    Please take a look at this related post: http://forums.adobe.com/message/5846080
    Cheers
    Parikshit

  • Responsive Navigation Bar (Alignment)

    I have my first responsive navigation bar on my page, and can not find the rule to move the (parent?) main menu item headings to the left. (I tried a couple things, some help, some didn't). I would like to move the 'Products' tab (with the others) to the left to line up with the blue border line. I need to also ensure that the subcontent displays starting same position also, and not far left of the main title/heading . (Essentially all text content left and text subcontent left lined up with the border (horz rule) line. Any help would be greatly appreciated.
    Here is site for my code: http://www.dothopper.com/
    Also two great sites I found:
    http://jquery-plugins.net/
    Great sripts/plugins
    http://tympanus.net/codrops/category/blueprints/
    Great, EASY, Quality concepts, plugins, components, layouts. Great Responsive Navigation !!

    No Notepad.  Plain vanilla is just a basic HTML page with no stylesheets attached to it other than the one you're trouble shooting.  When I looked at your page earlier, I remember seeing about 15 CSS files (some jQuery related).
    Division-itis is never a good thing.   Use HTML selectors alone or with classes. 
    /**This is applied to all h2 elements, regardless of where they appear**/
    h2 {font-size:18px}
    /**this is applied to all h2 elements that are inside the header only**/
    header h2 {margin-left: 45px }
    /**re-usable classes**/
    .red {color: #F00}
    HTML:
         <h2 class="red">This is a red, 18px heading 2</h2>
         <header>
              <h2>This is an 18px heading 2 with a margin-left of 45px</h2>
         </header>
    This article is a must read:
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Nancy O.

  • Navigation Bar Appears Below TabNavigator When Compiling With FlashBuilder 4.5

    After upgrading to FB 4.5, our exported release builds have started showing a text bar at the bottom of the Flex app that contain URL text related to the main TabNavigator's position.
    What is this bar and how can we hide it?

    Actually it appears the navigation bar is related to our new web server - what web server settings would cause a label / text box to appear at the bottom of the web browser?
    We tested by copying over the compiled SWF files from our old web server to our new web server, and the bar didn't go away.
    This bar appears to contain query string information specific to the Flex application and the TabNavigator position - for example:
    app=94d3&d9f1-selectedIndex=10&274b-selectedIndex=0app=94d3&d9f1-selectedIndex=10&274b-selectedIndex=1app=94d3&d9f1-selectedIndex=10&274b-selectedIndex=3app=94d3&d9f1-selectedIndex=5&274b-selectedIndex=0app=94d3&d9f1-selectedIndex=0&274b-selectedIndex=0app=94d3&d9f1-selectedIndex=7&274b-selectedIndex=0app=94d3&d9f1-selectedIndex=8&274b-selectedIndex=0app=94d3&d9f1-selectedIndex=6&274b-selectedIndex=0

  • CSS or JS Navigation Bar with inline Styled Search Field

    Does anyone know of a good tutorial on how to create a CSS or
    JS navigation bar that would contain a matching styled search field
    box?
    I have tried creating something like this a couple of times
    using the old JS Navigation Bar wizard in DW, but can't get the
    results I need. I can never seem to add a column that would include
    a search box and have it look right and inline with the rest of the
    navigation.
    For reference, I am trying to do a nav that is somewhat
    similiar to Apple's Nav bar, where the search field is styled to
    match the rest of the Nav and inline with the rest of the buttons.
    Any thoughts?
    Thanks.

    You don't need to use PMM. You can set your menu container to
    position:
    relative and then absolutely position the search box inside.
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"
    "destind4film" <[email protected]> wrote in
    message
    news:fkukir$8l4$[email protected]..
    > Hi Al,
    >
    > Thanks for the quick reply. I had actually checked your
    site earlier
    > today,
    > since I have had such an awesome experience with your
    accordion menus.
    >
    > That example is almost exactly what I am trying to do,
    minus the dropdown
    > menu
    > buttons. The buttons currently are just simple rollovers
    that go directly
    > to
    > other pages, but I am trying to place a styled search
    box to the right
    > like
    > your example has.
    >
    > Here is the current page (also using the PVII Accordion
    Menu) that does
    > not
    > have the search added yet, but you can see that I have
    plenty of real
    > estate to
    > include one:
    >
    >
    http://www.dvdflashbacks.com/mrhubcap/
    >
    > Questions:
    > Can the pop menu be used with my current roll over
    images for basic Nav
    > bars
    > like this?
    > How easy is it to add the search field to this menu?
    (This is a PHP/MySql
    > backend for the site using Cartweaver3. I have a php
    search snippet from
    > CW3
    > that I was trying to stick into a table cell next to
    this nav but the cell
    > would never align properly for some reason.)
    >
    > Thank you very much and Merry 'Belated' Christmas!
    >

Maybe you are looking for

  • How do I delete Twitter drop-down menu suggestions?

    When I go to log into twitter (on chrome, on a mac) there are suggestions that come up in a drop down menu, but how do I get rid of them? I tried shift+delete but it doesn't work. Neither does double clicking. Help. (P.S. I did it by accidentally put

  • Blinking #1 G5 diagnostic LED. I've already tried everything I can find info on.

    I have a 2005 Imac G5, non isight, that I replaced the capacitors and PSU. It was repaired and running fine for about a month when the other day, my wife went to use it. She woke it up, and was working online fine. She was then needing to print somet

  • Internet Explorer 7 - Trouble loading iWeb 08 Pages

    Is anyone else having trouble with iWeb 08 pages not loading properly when viewed in Internet Explorer 7? Everything loads fine on a Mac (Firefox 2.0) and even on a PC using Firefox but when viewing the site from IE7 it seems like pages containing ph

  • Quick route to setting vibrate on phone

    Folks, I've been a WIndows smartphone user for years and will be switching to Blackberry when the Curve comes out on Verizon next month.  I've scoured the online documentation, but can't find the answer to this question: How simple is it to execute t

  • .avi files on a V Plus

    I really want to get an avi file on my V Plus, so is there any way to do so? Any help would be great!