Horizontal menu buttons

Hello
I tried to get the menu buttons to be closer together, but were not able to understand. I thought is was margin who did it I can't press the buttons closer together. There is always a gap between the buttons
Watch #navlist li

It was my starting point http://css.maxdesign.com.au/listamatic/horizontal05.htm

Someone at - it a response to get these buttons closer?

David

------------------------------

<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
"< html xmlns =" http://www.w3.org/1999/xhtml "> "
< head >
< meta http-equiv = "Content-Type" content = text/html"; charset = iso-8859-1 "/ >"
< title > Menu Horizontal < /title >

< style type = "text/css" >
#navlist
{
do-size: 12pt;
padding-bottom: 10px;
padding-left: 350px;
padding-top: 100px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #CCCCCC;
margin: 0px;
}

Li #navlist
{
list-style: none;
margin: 0px;
display: inline;
padding: 0px;
}

Li #navlist one
{
text-decoration: none;
background-color: #66CCCC;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
left margin: 0px;
border: 1px solid #000000;
padding-top: 3px;
padding-right: 5px;
padding-bottom: 3px;
padding-left: 5px;
}

#navlist li a: link {color: #000000 ;}}

#navlist Li a: hover
{
Color: #000000;
background-color: #FFFFFF;
border: 1px solid #000000;
padding-top: 7px;
}

#navlist li a #current
{
< / style >
< / head >
< body >

< div id = "div" >
< ul id = "navlist" >
< li > < a href = "#" > home < /a > < /li >
< li > < a href = "#" > button < /a > < /li >
< li > < a href = "#" > button < /a > < /li >
< li > < a href = "#" > button < /a > < /li >
< li > < a href = "#" > button < /a > < /li >
< li > < a href = "#" > button < /a > < /li >
< /li >
< /ul >
< / div >
< / body >
< / html >

Hello

Under li #navlist if you use a negative number it will work :)
right margin:-3px;

I didn't know you can use a negative number!
I would also add that very few know how when it comes to css
I find a code on the internet and rework

Thanks for the replies

David
(always a positive kind of GUY)

Tags: Dreamweaver

Similar Questions

  • How I evenly space the horizontal menu buttons?

    I am following the tutorial for Kate Café (part 3,http://www.adobekb.com/building_your_first_website_pt03.html#adding) and I'm trying to customize the menu headers. According to, I have to use the default settings. Later, I put the logo on the menu for the 'home' button below the logo, so when you click on the logo, it takes you to the home page.

    I used the Menu > Horizontal option. Here's how mine as:

    Screen Shot 2013-05-16 at 2.27.34 PM.png

    The problem is that my menu buttons are not evenly spaced but tense.

    This is what looks like the demo version:

    fig_37_building.jpg

    Also, I noticed on some online tutorials that others have a Menu > Bar option, it is related to that?

    I checked and my Application Manager said that my version is up-to-date (I use cloud creative).

    Thanks for any help in advance!

    Select a menu item to set its appearance, then press ESC to select the whole menu, go to your control panel space and add horizontal space + in the option of the blue arrow for your menu widget, be sure to have "same size" (sorry, human translation from the french)

  • Cannot access the page customize or see the menu button!

    I had two modules different twitter (Twitbin and App Twitter). The first was one that I enabled again, because I wanted to see if it has improved for some time. After restarting my browser, however, most of my toolbars have been on different parameters. I managed to get my bookmarks toolbar, showing once again. However, now:
    -I can click on "Customize" under the tools, but the page appears empty (if any)
    -the orange "firefox" button at the top left disappeared
    -menu button (three horizontal lines) disappeared

    In addition, restarting somehow messed up my manager's Session module. It lists my tabs/windows have saved, but they never load.

    I searched everywhere, but have not found any real answers (page customize and SM have been the most frustrating of all this). I completely remove the add-on twitter, I chose not to use, but it changed nothing about how it was.

    Thank you
    -A

    Hello

    The reset Firefox feature can solve a lot of problems in restaurant Firefox to its factory default condition while saving your vital information.

    Note: This will make you lose all the Extensions and preferences.

    • Sites Web open is not recorded in less than 25 versions of Firefox.

    To reset Firefox, perform the following steps:

    For Firefox versions prior to 29,0:

    1. Go to Firefox > help > troubleshooting information.
    2. Click on the "Reset Firefox" line

      button.

    3. Firefox will close and reset. After Firefox is finished, it will display a window with the imported information. Click Finish.
    4. Firefox opens with all the default settings applied.

    For Firefox 29,0 and above:

    1. Click the menu button

      click Help

      and select troubleshooting information. Now, should open a new tab containing your troubleshooting information.

    2. At the top right of the page, you should see a button that says "Reset Firefox"

      . Click on it.

    3. Firefox will close and reset. After Firefox is finished, it will display a window with the imported information. Click Finish.
    4. Firefox opens with all the default settings applied.

    Information can be found in the article Firefox Refresh - reset the settings and Add-ons .

    This solve your problems? Please report to us!

    Thank you.

  • horizontal menu within HFM

    Hi, I have a menu into a strand of HFM's buttons... works fine but I need to do this...

    < |="" button=""  button="" button="" |="">

    the characters < and=""> and bitmaps... and I need that scrolling works only in the menu, buttons... What can I do?

    Well,.

    what you can do is to create a specialized HFM which can limit its horizontal extent.  This HFM will have buttons and will be created with HORIZONTAL_SCROLL (|)  HORIZONTAL_SCROLLBAR, if necessary).  Then you can have a HFM wrapping without scrolling, which will include the decorations you need as well as your specialized HFM.

    Something like that (not tested, but should work):

    First of all, your custom class - LimitedWidthHFM:

    // LimitedWidthHFM.java
    
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    
    class LimitedWidthHFM extends HorizontalFieldManager {
        private int requestedWidth = Integer.MAX_VALUE;
    
        public LimitedWidthHFM(long style, int maxWidth) {
            super(style);
            requestedWidth = maxWidth;
        }
    
        public LimitedWidthHFM(int maxWidth) {
            super();
            requestedWidth = maxWidth;
        }
    
        protected void sublayout(int width, int height) {
            int desiredWidth = Math.min(width, requestedWidth);
            if ((getStyle() & HORIZONTAL_SCROLL) == HORIZONTAL_SCROLL) {
                super.sublayout(width, height);
            } else {
                super.sublayout(desiredWidth, height);
            }
            setExtent(desiredWidth, getHeight());
        }
    }
    

    Second - create a menu:

    import net.rim.device.api.ui.component.BitmapField;
    import net.rim.device.api.ui.container.HorizontalFieldManager;
    
    // other imports as necessary - ButtonField almost for sure, MainScreen too
    
    import net.rim.device.api.system.Display; // requires signing!!!
    // Alternatively, you may import Graphics and use Graphics.getScreenWidth()
    // it is deprecated but does not require signing
    
    ...
    ...
    ...
    
    HorizontalFieldManager menuManager = new HorizontalFieldManager(NO_HORIZONTAL_SCROLL);
    LimitedWidthHFM buttonManager = new LimitedWidthHFM(HORIZONTAL_SCROLL, Display.getWidth() - leftBitmap.getWidth() - rightBitmap.getWidth());
    
    add(menuManager);
    menuManager.add(new BitmapField(leftBitmap, BitmapField.NON_FOCUSABLE));
    menuManager.add(buttonManager);
    menuManager.add(new BitmapField(rightBitmap, BitmapField.NON_FOCUSABLE));
    // Create all necessary buttons - don't forget to make them FOCUSABLE!
    buttonManager.add(button1);
    buttonManager.add(button2);
    buttonManager.add(button3);
    // etc.
    

    I hope it's useful.  Good luck!

  • Disassociate a menu button?

    Hello, how to remove the link to a page in a horizontal menu. I want to just activate you dropdown menubuttons and not the main button. And the next question: I want a link to a page, but I don't want this page to be a part of the top menu. THX!

    Hello

    To delete a Menu page, go to the view plane, right click on its thumbnail-> Menu Options-> Exclude.

    Regarding your second question, I suggest you create a hyperlink to this page, depending on the design of your site.

    Let me know if you have any question.

  • Horizontal menu widget - left alignment

    Does anyone know an easy way to align the text in a submenu of the Muse CC horizontal menu widget to the left rather than the standard Center-alignment?

    Select the submenu container and the hit button on the left of the Align attribute in the text panel (you may have to alternate between Center and left to do this work).

    Thank you

    Vinayak

  • Horizontal menu Widget Bug - default font

    I'll have a maddening problem with fonts in the Widget Menu Horizontal. He arrived to a point that I think just creating buttons in Photoshop and be done with it.

    The main problem is the default font - especially in the active state.

    I did drag an instance of the horizontal menu on the master page.

    The names of top-level page appeared in the buttons.

    I clicked on the button home, changed the 18pt Helvetica font. It updated to the police for all States in the viewer of States.

    I changed the background color for individual States to adapt to the color scheme of the site.

    All seemed good UNTIL I introduced the site Preview in the browser. The State of the active button had failed in the Georgia 14pt. Other States were all 18pt Helvetica

    I went back in and selected the active button at home and specifically changed state police what I wanted to.

    Once again, when previewing in the browser or in the Muse preview pane, the active State was Georgia 14pt.

    I went back in, deselected 'Edit Together', changed the active state of each button to Helvetica one.

    Even once, seen in the browser detects the GEORGIA.

    What is going on?

    About Adobe Muse, he says:

    v2.0, build 945 CL 770253

    3.4.0.2540 AIR runtime

    Hello

    I can reproduce the problem. But here is a workaround:

    1 Insert Horizontal menu

    2. Select the Home menu item

    3. pass the active state

    4 reset by default (click on the trash icon). You lose the fill color for the active state (#999999), but it you reapply

    5. Select the label inside the Home menu item

    6 go to the active state (if you're not already in Active state)

    7 reset by default (click on the trash icon).

    Now you can format as desired (18pt Helvetica). Let me know if it works.

    Abhishek

  • CSS Horizontal menu width 100%

    Hello

    I have a horizontal menu I want to extend to 100%. but when I add an additional button, I would that the widths between the buttons to change the menu to stay at 100% and the accroringly

    Kind regards

    Ian

    For me I just copy CSS menu samples I love a host of examples available to me online, so I just change the variables and width so that it can adapt to my taste and Web site. I don't usually NEVER try to code a menu from scratch, as always, I messed up and do the right things, hope you can get some insight on this technique, I've proven to work for me in the design of the menus for Web sites. There are tons of resources out there available to you online, you can go and get help from GOOGLE

    _________________________________
    FAV parts of Internet

    NASCAR fans
    Disadvantages of Mobile phones
    Real life travel - nude beaches
    Pregnancy guide

  • There is no 'content' in the menu button.

    I need to unlock pop ups and I read how but my menu button has no option of 'content' to implement this.

    Hi jcoggins453,
    You can find it in the topic: config page. However I do not recommend it as a permanent change.

  • left rather right side menu button

    Hi guys, just reinstalled windows. previously, I had a firefox addon or a script that set the menu button on the left side on the right side. can you please guide me to this addon or script
    Thank you

    See this UserStyle:
    https://userstyles.org/styles/94907/australis-menu-button-on-the-left

  • When I click on the menu button, why I can't see the historical option?

    According to the help instructions, in order to remove all or part of the history of my search, I'm supposed to click on the menu button and then select the option of history. However, when I click on the menu button, the story is not listed as one of the options.

    Hi, the button can be in 'other tools and features' in the section Customize the menu. If so, you can drag it to a location of your choice. If it is not visible, try clicking on Restore Defaults - more information - controls customize Firefox, buttons, and toolbars.

    You also bring up history by pressing Ctrl + H. Or you can bring up the menu bar (History tab) temporarily by pressing Alt, or if you want to stay there all the time, then right-click in the tab bar (but not on a tab) and a tick/check bar menu.

    If your question is resolved by this or another answer, please take a minute to let us know. Thank you.

  • Why my Menu button does not provide an add-ons button?

    Some of your help pages have departure instructions, '1. Click the menu button and choose Add-ons. The tab of the Add-ons Manager will open. "My menu access such an option. There choices such as the new window, new private Page window, save, print, etc. There is also a 'Sign' button in Sync, a '+ customize', etc.

    Hi, please see - controls to customize Firefox, buttons, and toolbars.

    If the add-on button is not on the menu or other tools and features, click default settings.

    You will also find in the menu bar > tools > modules as mentioned by FredMcD.

    If your question is resolved by this or another answer, please take a minute to let us know. Thank you.

  • I can't see the menu button to work

    I'm using Firefox on Linux Mint 13 Maya. For some reason, good number of buttons in Firefox (not on Web pages but FireFox itself) do not meet the mouse clicks. I tried the safe mode, refresh/restore and uninstall/reboot/reinstall. Still the same problem.
    I have a hard time to access the settings, because the menu button is one who "depresses", but does not respond to mouse clicks.
    Also, I can not activate or deactivate the plugins because of the same problem.

    Ok
    After trying more than things I want to try to enumerate. I think I have a solution.

    I installed the cinnamon desktop environment and disconnected then connected after choosing the cinnamon and the problem disappeared.

    I don't know why I suddenly started having the problem in xfce, because FireFox was working very well in it and my system was a little more sensitive to use.

    It works and I can go back to using FIrefox as my main browser.

    Blessings,
    MilwTD

  • Recently updated Firefox and now I have no menu button what happened

    I recently upgraded to firefox and everything seems to have changed, I found most of what I need but I can not or do not have a menu button so now I can't make the addons or plugins can someone I help please see below a list of useful things, but I need a menu button to do some of them

    Did you update to a very old version of Firefox? Learn more about the design of the new Firefox version 29 can help you get adjusted there where things are.

  • After downloading firefox to a new computer and using sync I have more no navigation bar or menu button.

    It is on a windows computer to work. It really happened on 2 new computers. Before synchronizing, the navigation bar and the menu button were there. After the sync - Gone! I tried to uninstall firefox and then put it back, but when I reinstall, the problem is already there, and bookmarks in sync automatically reappear on the resettled version. Is it possible to uninstall the synchronization?

    Currently the customization of the user interface does not synchronize. However, you can add this topic: config.
    services.sync.prefs.sync.browser.uiCustomization.state = true

Maybe you are looking for

  • Is satellite L350D-20F - possible to change the graphics card?

    Hallo! Is it possible to change my graphic card or at least to make bigger it? I have the ATI RAdeon 3100 256 MB graphics card. I don't know if it is built into a chip or Module.

  • How to get the full username by the user windows login name?

    Hello. I need determine the full username by the user Windows logon name. Where are many ways to determine the logon user name. For example application property node App.UserName or % variable %username% in cmd. But I found that one way to determine

  • Impossible to use player sky on windows media Center

    I can't use player sky on my windows media Center. It was working before Christmas.

  • With scroll multi line text box

    Hello I need to set up a text box multi online where new channels are added and the box scrolls.  I found a previous post with a good example. However, in the example, there is a while loop using shift registers to concatenate the strings and so to a

  • 14 elements installs but does not work

    I installed Photoshop Elements! 4 out of 10 Windows and it does not work. I received this message:C:\Windows\System 32\MCVCP120.dll is not designed to run on Windows, or there is an error. 0xc000012f error statusHe suggested I have reinstall which I