Simple nav buttons not displaying correctly

When I add content to the page that expands the table, the
nav buttons on the left "spread out". This isn't happening in
Safari. Any help would be much appreciated. Here is the page I'm
working on:
http://www.csayersdesign.com/achieveIT/pages/company.htm

Curtis Sayers wrote:
> When I add content to the page that expands the table,
the nav buttons on the
> left "spread out". This isn't happening in Safari. Any
help would be much
> appreciated. Here is the page I'm working on:
>
http://www.csayersdesign.com/achieveIT/pages/company.htm
>
>
Problem is you're doing what a lot of beginners do, trying to
create a
page by using one single table and splitting the cells into
numerous
cells......that aint going to work as you have found out.
It doesn't help either that you are allowing Fireworks to
generate this
code. When you do that it normally produces fragile code that
the
browser tries its best to interpret and a lot of times fails
The design you're trying to produce is a fairly basic 2
column table
which you should ideally set up directly in Dreamweaver.
A sticking plaster option would be to remove all the elements
in your
navigation side bar and merge that column back into one
single cell. You
can do that by click-dragging in Dreamweaver then in the
properties
inspector where it says 'cell' in the bottom left corner
click the white
square icon which will merge all the cells into one.
The downside to this is that it may upset the fragile code
created by
Fireworks and throw your page into even more turmoil.
If it does work you then need to insert another table (a
nested table)
into the cell which you merged back into one. Then put your
navigation
buttons into it.
Tables that are independent of one another cannot interact
and so you
create a more stable environment for your design.

Similar Messages

  • How to fix the firefox buttons not displaying correctly (i.e. the "save file" button when trying to install an add on)?

    For example, the button for "save file" when downloading an add-on does not display correctly. It works nevertheless, but the button itself is not showing up correctly.
    *edit: sp errors*

    It looks that you have made changes to the appearance of button that cause items and text to be larger.
    In your case this doesn't seem to work properly with the consequence that the middle part of the button gets distorted.
    I'm curious if this artifact would move to the other (Cancel) button or disappear if you would use the Tab key or cursor key to set focus to the Cancel button or if it is a problem with the label text that isn't default (OK or similar).

  • InDesign 6 Buttons Not Displaying Correctly in Acrobat X

    Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult. As further information, with small book files, the display is fine, but as pages are added, button display goes haywire.

    Lori,
    Thanks for your response. This is an incredibly painful bug. I hope Adobe is a little more attentive than they usually are in fixing this. I have more than 100 interactive books which I must convert and maintain (they're our equipment manuals). Not having full functionality, especially given the cost of the software, is a serious issue. Any suggestions as to who needs to be contacted for follow up?

  • InDesign 6 Interactive Buttons Not Displaying Correctly in Acrobat X

    Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult.

    I’ve seen this reported in this past. It’s not an InDesign issue or the files wouldn’t work in Reader.
    If you get any answers in the Acrobat forum, please come back and share them.
    Bob

  • Group Layout- Button not displaying correctly

    Hello all,
    I am having a problem with group layout and having a button display incorrectly. Here is my code:
         public HRES_AboutBox(){
              initComponents();
         private void initComponents(){
              //--------Set-Up---Frame------------
              frameLocation = Toolkit.getDefaultToolkit().getScreenSize();
              frameWidth = frameLocation.width;
              frameHeight = frameLocation.height;
              aboutFrame = new JFrame(FRAMETITLE);
              aboutFrame.setPreferredSize(new Dimension(487,212));
              aboutFrame.setLocation(frameWidth / 4, frameHeight / 4);
              aboutFrame.setMaximumSize(new Dimension(800,600));
              aboutFrame.pack();
              aboutFrame.setVisible(true);
              aboutFrame.setDefaultCloseOperation(EXIT_ON_CLOSE);
              aboutFrame.setTitle(FRAMETITLE);
              setupComponents();
    private void setupComponents(){
         //--------Set-Up---Button------------
         closeButton = new JButton();
         closeButton.setName(BUTTONNAME);
         //--------Set-Up---Logo------------
         picURL = HRES_AboutBox.class.getResource("/testLogo.jpg");
         appPic = new ImageIcon(picURL);
         //--------Set-Up---Labels------------
         appTitleLabel = new JLabel();
         versionLabel = new JLabel();
         appVersionLabel = new JLabel();
         vendorLabel = new JLabel();
         appVendorLabel = new JLabel();
         homepageLabel = new JLabel();
         appHomepageLabel = new JLabel();
         appDescLabel = new JLabel();
         imageLabel = new JLabel();
         appTitleLabel.getFont().deriveFont
            (appTitleLabel.getFont().getStyle()| Font.BOLD, appTitleLabel.getFont().getSize() + 4);
         appTitleLabel.setText("T.E.S.T - Test Text for Label");
            appTitleLabel.setName("Application Title Label");
         versionLabel.getFont().deriveFont
           (versionLabel.getFont().getStyle() | Font.BOLD, versionLabel.getFont().getSize() + 4);
            versionLabel.setText(VERSIONLABELSTRING);
            versionLabel.setName("Version Label");
            appVersionLabel.setText(APPVERSIONLABELSTRING);
            appVersionLabel.setName("Application Version Label");
            vendorLabel.getFont().deriveFont
           (vendorLabel.getFont().getStyle() | Font.BOLD, vendorLabel.getFont().getSize() + 4);
            vendorLabel.setText(VENDORLABELSTRING);
            vendorLabel.setName("Vendor Label");
            appVendorLabel.setText(APPVENDORLABELSTRING);
            appVendorLabel.setName("Application Vendor Label");
            homepageLabel.getFont().deriveFont
            (homepageLabel.getFont().getStyle()| Font.BOLD, homepageLabel.getFont().getSize() + 4);
            homepageLabel.setText(HOMEPAGELABELSTRING);
            homepageLabel.setName("Homepage Label");
            appHomepageLabel.setText(APPHOMEPAGELABELSTRING);
            appHomepageLabel.setName("Application Homepage Label");
            appDescLabel.setText(APPDESCLABELSTRING);
            appDescLabel.setName("Application Description Label");
            imageLabel.setIcon(appPic);
            imageLabel.setName("Image Label");
            //--------Set-Up---Layout------------
            layout = new GroupLayout(aboutFrame.getContentPane());
            aboutFrame.getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addGroup(layout.createSequentialGroup()
                         .addComponent(imageLabel)
                         .addGap(18, 18, 18)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.TRAILING)
                             .addGroup(GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(versionLabel)
                                     .addComponent(vendorLabel)
                                     .addComponent(homepageLabel))
                                 .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(appVersionLabel)
                                     .addComponent(appVendorLabel)
                                     .addComponent(appHomepageLabel)))
                             .addComponent(appTitleLabel, GroupLayout.Alignment.LEADING)
                             .addComponent(appDescLabel, GroupLayout.Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 329, Short.MAX_VALUE)
                             .addComponent(closeButton))
                         .addContainerGap())
              layout.setVerticalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addComponent(imageLabel, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                     .addGroup(layout.createSequentialGroup()
                         .addContainerGap()
                         .addComponent(appTitleLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addComponent(appDescLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(versionLabel)
                             .addComponent(appVersionLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(vendorLabel)
                             .addComponent(appVendorLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(homepageLabel)
                             .addComponent(appHomepageLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, 19, Short.MAX_VALUE)
                         .addComponent(closeButton)
                         .addContainerGap())
              pack();
         public void closePasswordBox(){
              dispose();
         public static void main(String [] args){
              HRES_AboutBox hra = new HRES_AboutBox();
              if(hra.isVisible() == false){
                   hra.setVisible(true);
    }When I run this it comes out fairly alright but the button in the lower right corner does not display correctly, i have tried setting the size of the button but that does not solve the problem. If anyone can give any advice or info on how to get it to display right I would appreciate it.

    Hi,
    I usually only use the GroupLayout when using a GUI builder like the one in NetBeans.
    If I need to layout something manually I usually use a combination of the other layout managers.
    Sometimes I combine the two: eg. static layout with the GUI builder, dynamic layout by hand
    But if you want to use the GroupLayout manually, check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/group.html
    Otherwise check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html

  • Chinese simple characters are not displayed correctly (Old (TW? HK?) style instead of modern characters)

    We a currently trying to translate our software into Chinese and we noted that some of the chinese characters are displayed incorrectly (it seems the Taiwanese/Hongkong version is displayed instead of the modern simple character)
    The problem exists in both Firefox 3.6 as well as 4.0.1 and 4.0.2 (we did not try with other versions yet)
    The characters are displayed correctly in IE 9.x and Google Chrome 13.0.782.220 m and we are positive it is not a problem with the website itself.
    I copied part of a screenshot on: http://stuff.schoellhammer.at/bsp.png
    The bottom part is the character from the input scheme (correctly displayed) but once it is entered in firefox (top part), the left character is displayed in incorrectly.

    Thank you for your fast reply :)
    The site is not online available unfortunately.
    The character encoding used by Firefox is UTF-8 (automatically detected) which is correct. I even tried manually switching to other Chinese standards, but none of them brought a satisfieable result.
    The site itself does not specify a font (the css only contains "font-family: Arial,Tahoma,Verdana;"), and the site does not provide a custom font either.
    I noticed that if i copy and paste the text into word, the characters are wrongly displayed too using the font MS Mincho (so I assume Firefox automatically selects this font to display the characters which would explain why they are displayed incorrectly)
    Ah, I now included the font "SimSun" in the css (which is installed on in windows and using this font the characters are displayed correctly in word) - and this solved he problem!
    Thanks for your help!!

  • PayPal donation button not displaying correctly in FireFox

    I added a PayPal donation button, but it only displays correctly in Explorer - not in FireFox.  The site is:  www.washoe.k12.nv.us/mtrose
    <div id="content"><!-- InstanceBeginEditable name="content" -->
            <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_donations">
    <input type="hidden" name="business" value="[email protected]">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="item_name" value="Mount Rose Elementary School">
    <input type="hidden" name="no_note" value="0">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="bn" value="PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest">
    <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
            <h1>Two-Way Immersion</h1>
            <p>The goal of our program is to help young s tudents become fluent in Engish and Spanish by the end of <br>
            elementary school.        </p>
            <p>Our program began in 2008-2009 with one kindergarten class and will expand one grade each year as the students move through the grades for a total of seven classes.</p>
            <p>The program is voluntary and there is a waiting list.</p>
            <p>The initiation of the program is designed to serve the students already zoned for our school and does not involve busing students or change Mount Rose's current zoning.</p>
            <p>The program also does not involve the addition of portables to our school at this time.</p>
            <h2>Mount Rose Centennial Celebration!</h2>
            <p><a href="Mount_Rose_Centennial.pdf">Mt. Rose Centennial Celebration</a> - An Old Time Picnic and Reunion of Mt. Rose Elementary School Friends Past and Present. Join us on October 2, 2011 from Noon to 4 PM for A Celebration to Commemorate the Centennial of Mt. Rose Elementary School One Hundred Years of Educating Reno's Downtown and Old Southwest Neighborhood Young!</p>
            <p>Commemorative T-shirts avialable $8 / For more information click <a href="centenial.pdf" target="_blank">HERE.</a></p>
            <p>For more information contact Jenny Brekhus 544-1694 or [email protected]</p>
            <p><img src="images/tshirt.jpg" width="403" height="253" alt="tshirt photo"></p>
            <h2> </h2>
        <!-- InstanceEndEditable --></div>
        <div id="rightside" class="brd-thin-white-top"><!-- InstanceBeginEditable name="right-top" -->
            <h2>Early Release Days!</h2>
            <p> Every Wednesday during the 2010-2011 school year, school will be released at 2:30 for teacher professional learning communities. This is a district wide change and will replace most early release days.</p>
            <p>Please remember to make arrangements for you child on Wednesdays!</p>
        <!-- InstanceEndEditable --><!-- InstanceBeginEditable name="right-bottom" -->
            <h2><a href="https://campus.washoe.k12.nv.us/campus/portal/washoe.jsp"><img src="images/infinite_campus.jpg" width="142" height="102" alt="infinite campus portal"></a></h2>
            <p><a href="http://www.washoe.k12.nv.us/district/departments/transportation/bus-rules"><img src="images/bus_rules.gif" width="120" height="90" alt="bus rules"></a></p>
            <p><a href="http://www.washoe.k12.nv.us/district/departments/transportation/elink"><img src="images/bus_schedules.gif" width="202" height="87" alt="bus schedules"></a></p>
            <p><a href="http://www.washoe.k12.nv.us/espanol"><img src="images/spanish.gif" width="200" height="70" alt="wcsd spanish site"></a></p>
            <p><img src="images/wcsd.jpg" width="99" height="143" alt="wcsd logo"></p>
            <!-- InstanceEndEditable --></div>
        <div id="footer" class="brd-thin-white-top">
            <p class="footer-text">&copy; 2010 |<a href="mailto:[email protected]" target="_blank">Webmaster</a></p>
        </div>
    </div>
    </body>
    <!-- InstanceEnd --></html>

    Appears OK in Firefox... is it not where you want it?

  • Table header sort buttons not displaying correctly.

    HI All,
    I'm having a problem with data table headers that seems to have appeared out of nowhere but is probably something simple I'm overlooking. To be sure it wasn't something deep in my app, I've created a simple project and recreated the problem.
    I created a simple web project and dropped a table onto the main page. I then bound the table to a full select of a myqsql table and then compiled. Simple enough, everything looks okay, until I opened the page in my browser.
    The table displays without borders and the sort buttons in the headings are not displayed but described such as this example
    " Button to sort column Date as the primary sort column."
    Any ideas?
    I'm not sure if this is a Creator error/setting or something else but I thought I'd start with Creator.
    Thanks
    Barry

    Some additional info
    The sort "buttons" have been replaced by links, that don't do anything. I even enabled all the multiple-select, pagination, etc features for the table and rather than be displayed as buttons, links have appeared for these functions as well.
    Thanks

  • RSS, Back and Slideshow buttons not displaying correctly

    I just finished my new wesite in Iweb and published it to .mac. Everything is working fine in Iweb but when I look at the published site the RSS, Subscribe, Back buttons are displaying really screwy. There are added buttons where I didn't put them. How can I fix this? It is occurring specifically on my photo album pages.
    Janer

    Publish your site to and folder on the desktop and double click the index.html file to launch your site in the browser.
    If the page looks OK do a "Publish all to Mac".
    If its still not right you'll have to go back to the iWeb page and try resetting the buttons and then do a Publish All.

  • BC Add To Cart Button Not Displaying Correctly

    I have been told by BC Tech support that Muse is causing the BC Add To Cart Button to have issues when exporting my site live. Here are two pages, one created in Muse where the button does not work correctly & one not created in muse where the same button information does work correctly.
    1.) Doesn't Work: Custom Made Outdoor Logo Mat - Customized Aqua Flow Entry Mats
    2.) Works: bctest
    Any ideas on how to get that working?
    The page which doesn't work was designed in Muse & I added the module code: {module_product,201955,6549130}    via the Insert HTML function in Muse. Apparently things get jumbled up on export or something to that effect.
    Thanks
    even on a page created from my side with no content whatsoever other than the Buy Button Code still will not work: Test01
    & interestingly, a page created in Dreamweaver with the same module code works correctly. Test 02

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *http://kb.mozillazine.org/Websites_look_wrong

  • Hover menu buttons not displaying correctly in Firefox

    Hello,
    I have a small problem with firefox. It does not seem to
    display the images correctly. In firefox the buttons are pushed
    down and you can only see part of the image. In IE6 and IE7 it is
    displayed fine.
    here is the URL so you can take a look at it:
    Page
    Does anyone know what the problem might be?

    Just drop a zoom:100% style on the link, and IE will get it
    right.
    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
    ==================
    "TC2112" <[email protected]> wrote in
    message
    news:fh2nt4$4u8$[email protected]..
    > Hello,
    >
    > The problem is with IE, not Firefox.
    > The content of your menu link tags is a clear gif image
    that is the same
    > height as the background images applied to the link tag
    that change on
    > mouseover.
    > Even though it looks like you want it to in IE, IE is
    actually rendering
    > your
    > code incorrectly.
    > Firefox is rendering your code exactly as it should.
    >
    > Your background images are applied by CSS to the link,
    not the image
    > within.
    > In standards compliant browsers like Firefox, the height
    of link
    > attributes
    > such as background and border are determined by the font
    size or line
    > height
    > that applies to that link, even if there is no text in
    the link.
    > As a test, you can add font-size:38px (the height of
    your background
    > images)
    > to "table.menu" in your CSS and you'll see your entire
    link background
    > images
    > in FF.
    > IE incorrectly streches the link background to the
    height of the image
    > within
    > within the link.
    > IE does the same thing to borders if they are applied to
    just the "a" tag
    > and
    > not to "a img" in the CSS.
    >
    > A quick fix:
    >
    > table.menu { width:186px; margin-top:6px;
    > line-height: 38px; }
    >
    > A better fix and some great information:
    >
    >
    >
    >
    http://projectseven.com/tutorials/css/uberlinks/index.htm
    >
    > and:
    >
    >
    http://css.maxdesign.com.au/listamatic/
    >
    > Hope that helps,
    >
    > Take care,
    > Tim
    >

  • Upgrading APEX from 3.2 to 4.0 images and buttons not displaying correctly

    Database 11.2.0.1
    APEX: 3.2.1
    Attemping to upgrade APEX from 3.2 to 4.0. The installation script runs fine and updates the database successfully. I run the .sql to import the images and it ran successfully however when I attempt to access the APEX home page, the images are not loaded and the buttons don't do anything. I did some research through google but did not come to anything that resolved my issue. Does anyone have any ideas?
    Thanks for your time...

    If you are using mod_plsql, you need to run @apxldimg.sql script with SYS user file present with Apex installation. Also provide the location of your apex folder as parameter to this script.
    Habib

  • With IE UIX buttons are not displayed correctly

    Hello there,
    We have developed an application using UIX. While browsing application using Internet Explorer I noticed that many of the buttons are not displayed correctly. Only some part of the button is displayed. Same thing happens while displaying some of the page logos and stuff. Did anyone have same problem? What's solution?
    Thanks,

    Hi Andy,
    sometimes half of button is displayed and sometimes the whole button image is distorted. if you refresh the page, it becomes perfectly fine. sometimes nothing is displayed but if you put mouse at the place where there should be a button, you would know that there is a button...
    it happens with random buttons...
    i haven't seen this problem in mozilla. its quite frequent in IE.
    our customer is very annoyed by this problem :(

  • Login action buttons no longer work and some pages not displaying correctly after upgrade.

    After recent update, some web pages not displaying correctly and Login buttons on some sites do not work. I've updated my plugins and restarted computer, but problems remains. Is this Java, Javascript or something else? Same pages are working fine in IE.

    Please update the firefox to the latest version of firefox 26
    Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    <b> To Enable SafeMode </b>
    *You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    If it works in Safe Mode and in normal mode with all extensions (Tools > Add-ons > Extensions) disabled then try to find which extension is causing it by enabling one extension at a time until the problem reappears.
    Close and restart Firefox after each change via "Firefox > Exit" (Windows: Firefox/File > Exit; Mac: "Firefox > Quit Firefox"; Linux: "Firefox/File > Quit")
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Responsive nav bar not working correctly

    Hi All,
    The responsive nab bar on the site below is working correctly. When it changes from horizontal buttons to vertical, the sub menu buttons do not display correctly and i cannot work out how to correct it, they should display underneath the menu button when clicked on but they don't?
    Appreciate any help please.
    http://www.clockdoctors.co.uk/index.html

    The below css is all you should need for your media queries. I would think about using some jQuery onClick to show those sub menus as it's way to jumpy.
    #nav {
    width: 100%;
    #nav li {
    float: none;
    font-size: 16px;
    text-align: center;
    width: 100%;
    #nav li a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #999;
    #nav li a:hover{
    color: #fff;
    #nav li ul  {
    position: static;
    #nav li ul li a {
    padding: 8px 0;
    #nav li a {
    font-size:14px;
    margin: 0;

Maybe you are looking for

  • How can i delete a corrupted file that will not download?

    I recently purchased a song on itunes and i keep getting a message that tells me to try redownloading due to the song being a corrupt file.  When i attempt to redownload the song, i get another error message that tells me the download could not be co

  • Can I print photos at different resolutions in one PS5 file?

    I am printing photos on fabric. I'd like compare one printed at 300dpi and the same photo at 150 dpi. I was going to set them  side by side on a piece of fabric and realized I had to specify the resolution of the file I'm placing them in. Can I have

  • Processing Type In PPP

    Hi All, As we are upgrading from 11i to R12 and we are configuring payments in R12, and we have four payment method:- Scrren shot i have attched 1) Check 2) Electronic 3) Wire 4) Clearing And we are configuring Payment Process Profile (PPP) in paymen

  • Installed second drive but os cant see it

    installed second drive- WD 750GB 7500BPKT but OS doesnt see it contacted WD and these have no built in drives, they sent me to OS for support, but as it was OEM, they sent me for support here. help please. Thanks

  • Is it me or is my itunes not ripping music from any kind of cd?

    I had saved all my mp3 music before my old computer crashed on a CD-R disc. I have many songs on it but itunes is not importing the music. I have them saved on my new comp. and I can open and play the music. But I cannot synch them onto my ipod becau