Fix for uneven spacing in horizontal navigation

... and I can't figure out why. I've tried making sure the
padding was the same, but something isn't quite right and I've been
working on it for a couple of hours and still haven't "got it". Can
someone look at the following page and tell me why my "welcome"
button (unlinked) doesn't appear to have the same padding around it
that the others do and how to fix it. I'm also curious how the page
looks to others - I'm seeing it fine on my screen but just checked
it on another computer using Firefox and there appear to be gaps,
the navigation bar doesn't look right, etc.
The page is at
Kolinos
Thanks for any help!!

Hello,
You can change the code for the navigation to this:
<div id="wrapper">
<div id="banner"> <img src="images/home-banner.jpg"
alt="Banner"
width="800" height="150" /></div>
<div id="top_navigation">
<ul>
<li><a href="index.htm"
class="current">Welcome</a></li>
<li><a href="aboutus.html">About
Us</a></li>
<li><a href="family.html">Family &amp;
Friends</a></li>
<li><a href="our_home.html">Our
Home</a></li>
<li><a
href="adventures.html">Adventures</a></li>
<li><a href="contact.html">Contact
Us</a></li>
</ul>
</div>
And then use this CSS:
#top_navigation ul {
background-color: #86614e;
text-align: center;
padding: 5px 0px;
margin: 0px;
color: white;
width: 100%;
font-size:20px;
font-weight:bold;
#top_navigation ul li {
display: inline;
padding: 5px 0px;
#top_navigation ul li a {
text-decoration: none;
padding: 5px 10px;
color:#ffffff;
#top_navigation li a:visited {
color: #CCC;
#top_navigation li a.current:visited {
color: #FFF;
#top_navigation li a:hover {
color: #4a4037;
background-color: #FFFFFF;
#top_navigation li a.current:hover {
color: #FFF;
background-color: #86614e;
Be sure to delete this:
#top_navigation {
width: 800px;
background-color: #86614e;
padding-top: 5px;
padding-bottom: 5px;
The width is controlled by the wrapper, and all the spacing
and color is in
the above CSS.
I hope that helps,
Take care,
Tim
"webmom24" <[email protected]> wrote in
message
news:[email protected]...
> Hi, Thanks for your help. The gap is gone - yeah!
However, the "padding"
> in the
> navigation area still looks off to me - to the left and
right of the
> "welcome"
> on both the index page and the about us page. It's not
the same as the
> padding
> around the "linked" buttons. Also, while the padding at
the top and bottom
> of
> the navigation area look fine in IE, the bottom padding
is off on FF - so
> that
> when you hover over, the white background doesn't fill
up the space of the
> navigation area. Looks fine (to me anyway) on IE.
>
> Thanks again :)
>
> Maureen
>

Similar Messages

  • Is there a fix for seeing bolded dates in navigation calendars for shared calendars (when appts have been made on certain dates) as was the case in Office 2003?

    Is there a fix for seeing bolded dates in navigation calendars for shared calendars (when appts have been made on certain dates) as was the case in Office 2003?
    Looks like in 2011 someone posted on the forum that it was being looked into, but has there been a fix?  It's now two years later?
    Thank you!!

    Hi,
    According to your description, it seems that the issue is related to Outlook 2003. This forum focus on Exchange 2013. Additionally, Outlook 2003 is no longer supported in Exchange 2013.
    I suggest we can ask this question in Outlook forums for more professional answers:
    http://social.technet.microsoft.com/Forums/office/en-US/home?forum=outlook
    Thanks,
    Winnie Liang
    TechNet Community Support

  • Fix for Bolded Dates in Outlook 2010 Shared Calendars

    Is there a fix for seeing bolded dates in navigation calendars for shared calendars In Outlook 2010  (when appts have been made on certain dates) as was the case in Office 2003?
    Looks like in 2011 someone posted on the forum that it was being looked into, but has there been a fix?  It's now two years later?  I had put this on the Exchange forum, and they said to put it on the Office/Outlook forum.  I've seen it both
    places, but no answers yet.  Trying here now as suggested.
    Thank you!

    Hi,
    I can reproduce this on my Outlook 2010. It displays the same for shared calendars on Outlook 2013, so far I'd say it's by design rather than a bug.
    Regards,
    Melon Chen
    TechNet Community Support

  • Need code for padding (spacing) 5 navigation links in my #topnavbar internal style

    need code for padding (spacing) 5 navigation links in my #topnavbar internal style

    I'm new at this and the below code is regarding the navigation bar and links
    I started using a template to create the first html page and made copies of it to create the other four.
    All the links work but I wanted to space them apart further.
    They look basically like this horizontally: Home About Us Photo Gallery Services Contact Us
    #topnavbar {
    text-align:center;
    #topnavbar a:link a:visited{
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 100%;
    font-weight: bold;
    color: #039;
    text-decoration: none;
    margin: 0 25px:
    #topnavbar a:hover a:active {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 100%;
    font-weight: bold;
    color: #039;
    text-decoration: none;
          <div id="topnavbar">
          <nav>
          <p><a href="index.html">Home</a>  
             <a href="aboutus.html">About Us</a>  
             <a href="photogallery.html">Photo Gallery</a>
             <a href="services.html">Services</a>
             <a href="contactus.html">Contact Us</a></p>  
          </nav>
           </div>

  • Need Help using ul for horizontal navigation

    Though I normally use tables, I've been reading that it's better to use <ul> and <li> for horizontal navigation bar on my website.
    I'm having problems with spacing, I want each item of the navigation bar to fit in a 166 width box.
    Here's my CSS:
    #ul.navbar {
        list-style-type: none;
      font-weight: bold;  
      background-image: url(../images/166bar.gif);
        margin: 0;
        padding: 0;
        width: 100%;
    #ul.navbar li {
        margin: 0px 20px 10px 20px;
        list-style: none;   
    #ul.navbar a {
        text-decoration: none;
    How do I make sure each item of horizontal navigation bar fits in the center of it's box? Can any recommend a good tutorial or example?

    http://alt-web.com/DEMOS/CSS-Menus.shtml
    Change
    text-align: left
    to
    text-align:center
    I want each item of the navigation bar to fit in a 166 width box.
    In that case, you should use tables, images or vertical list menus.
    http://css.maxdesign.com.au/listamatic/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • CS3 Fix for Spry Horizontal Menu bar/drop boxes positioning bug in IE?

    I have searched threads to see if there is an "easy" solution for the incorrect positioning of horizontal menu bar drop boxes in IE browser older versions(mine showed up at the top of the screen and mysteriously included the word "false" in older IE ONLY). Is there a downloadable patch or quick fix for this problem at this point in time? I saw an available download for a newer version of Spry but seems like overkill for this small issue. I am not an experienced web designer or computer geek, but can follow specific directions I am given. The horz bar with drop boxes showed correctly in Firefox and other browsers but not in older(?) IE. For now, I've simply removed the drop boxes to make the page look respectable, but boy did it look good with those boxes. I am hoping somebody can talk to me without lots of teckkie terms. Though I appreciate and love all of you tecs out there.

    You really should install the Spry update as it fixes some IE issues that the earlier versions of Spry had. Then use the Dreamweaver Command menu to update your Spry files within your site and you should have the latest and be ready to go. If you're still having issues you may want to also check out the Spry forum: http://forums.adobe.com/community/labs/spry
    Let us know if the update doesn't solve your particular problem.

  • Fix for extra line spacing in code on publish

    Hi Everyone
    Here is a fix for the issue where on publishing using Contribute (CS3 / CS4) extra line spacing is added into the HTML code on publish.  Everytime you publish using Contribute extra line spacing is added between the lines of coding destroying the formatting over time.
    (See attached PDF document for the complete how to step-by-step fix.)
    The issue lies in the line break type defined in Adobe Contribute settings.  Where the web server type, the website is hosted on Unix / Windows, is different from the line break type defined in Contribute's settings under...
    Users & Roles > Editing > Line break Type
    For example:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Website Tile</title>
    <meta name="keywords" content="Keywords here" />
    <meta name="description" content="Description here" />
    On publish becomes:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Website Tile</title>
    <meta name="keywords" content="Keywords here" />
    <meta name="description" content="Description here" />
    (dots are used just to space the text in the forum thread post, they represent blank lines between the lines of code)

    It sounds like you are carrying over a desktop setting that I dont think is editable in iPad pages. It is the before and after spacing around paragraphs. I have been using iPad versions for months now and cant think of the desktop wording in the inspector.
    Open back up in Dekstop pages and see if you can find that setting and reset it to a lower value, or delete the value and resend to iPad.
    Jason

  • [svn:fx-trunk] 5408: Fix for - Compiler error using Reparent in a Halo Navigator.

    Revision: 5408
    Author: [email protected]
    Date: 2009-03-18 20:57:19 -0700 (Wed, 18 Mar 2009)
    Log Message:
    Fix for - Compiler error using Reparent in a Halo Navigator.
    QE Notes: None.
    Doc Notes: None.
    Reviewer: Paul, please review.
    Bugs: SDK-20099
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-20099
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ComponentBuilder.jav a

  • Center 2 lines of horizontal navigation using CSS

    I have a long horizontal navigation at the foot of my page
    and it looks fab, but it's all aligned to the left. How do I center
    everything so the second line is centered below the top line?
    Applying the BLOCK text align:center rule doesn't work - tried it
    on all the various rules (the div itself, ul, li, a etc).

    Your page throws a js error for me when it loads.
    Error: MM_preloadImages is not defined
    Source File:
    http://www.friendsofwoodhousegrove.co.uk/friendsnew/index.htm
    Also, you are using filenames that contain spaces that are
    NOT Server
    encoded....
    <link href="CSS files/images.css" rel="stylesheet"
    type="text/css" />
    ----------------------^
    Why don't you fix those and post back?
    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
    ==================
    "Cactus Woman" <[email protected]> wrote in
    message
    news:eujcmd$seo$[email protected]..
    > Hi Murray,
    >
    > This is the url:
    >
    http://www.friendsofwoodhousegrove.co.uk/friendsnew/index.htm
    >
    > The navigation I'm trying to centre is at the bottom
    over the background
    > image. I've done 2 unordered lists, one following the
    other, because if I
    > do
    > the long list as one list some of the page titles start
    to double up on
    > themselves.
    >
    > Thanks
    >

  • How to - horizontal navigation

    Hello,
    I'm having a mental block and can't figure out how to do a
    SIMPLE navigation bar horizontally across the top of the page.
    Wanted to use "block", but I seem to only be able to get my list in
    a vertical format doing this. Then tried "display-list_item" which
    looked okay on my screen but loaded again with the navigation being
    vertical. I know that this has got to be easy... don't want to make
    it hard by creating buttons, etc. when I want something simple.
    Page is located at
    Sage
    City
    I haven't been doing many sites lately and I'm badly out of
    practice I'm afraid... thanks for your help :)
    Maureen

    > Murray - Still haven't got it all straightened out and
    may end up starting
    > from scratch using divs instead. The "client" in this
    case is a web person
    > (back-end I think) and insisted on using "tables"
    because according to her
    > this
    > has less accessibility issues.
    Your client is badly mistaken. If tables are used for
    content, they create
    accessability problems, since tables are "read" from left to
    right, top to
    bottom, meaning that vertically adjacent content will not be
    read as a block
    when they are in different cells in the same column.
    > #navigation td
    This is a descendent selector - it specifies that the rull
    following it
    would be applied to all <td> tags within a parent
    container with ID =
    "navigation". It's quite common to use such selectors.
    > it seems cumbersome
    Quite the opposite.
    > What I've done is changed all the "#" to "." and applied
    the classes to
    > the
    > text as needed.
    That's the wrong approach, really.
    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
    ==================
    "webmom24" <[email protected]> wrote in
    message
    news:[email protected]...
    > Patty - I guess I just haven't seen this before and it
    didn't seem to work
    > correctly in the page either.
    >
    > For example, here's the navigation code:
    > #navigation td {
    > border-bottom: 2px solid #C0DFFD;
    > }
    >
    > #navigation a {
    > font: 11px Verdana, Arial, Helvetica, sans-serif;
    > color: #003366;
    > line-height:16px;
    > letter-spacing:.1em;
    > text-decoration: none;
    > display:block;
    > padding:8px 6px 10px 26px;
    > background: url("mm_arrow.gif") 14px 45% no-repeat;
    > }
    >
    > #navigation a:hover {
    > background: #ffffff url("mm_arrow.gif") 14px 45%
    no-repeat;
    > color:#FF6600;
    >
    > Then on the page:
    > <table border="0" cellspacing="0" cellpadding="0"
    width="165"
    > id="navigation">
    > <tr>
    > <td width="165"> <br />
    >  <br /></td>
    > </tr>
    > <tr>
    > <td width="165"><a href="javascript:;"
    > class="navText">destinations</a></td>
    > </tr>
    > <tr>
    > <td width="165"><a href="javascript:;"
    > class="navText">airfare</a></td>
    > </tr>
    > <tr>
    > <td width="165"><a href="javascript:;"
    > class="navText">cruises</a></td>
    > </tr>
    > <tr>
    > <td width="165"><a href="javascript:;"
    > class="navText">specials</a></td>
    > </tr>
    > <tr>
    > <td width="165"><a href="javascript:;"
    > class="navText">contact</a></td>
    > </tr>
    > </table>
    >
    > I guess I don't understand how the "id" works to format
    the table - it
    > seems
    > cumbersome and I'm not understanding what this is doing
    exactly. It was a
    > bit
    > confusing for me to figure out how to change the
    navigation from vertical
    > to
    > horizontal and in the process I probably deleted some of
    the crucial
    > elements.
    > What I've done is changed all the "#" to "." and applied
    the classes to
    > the
    > text as needed.
    >
    > Murray - Still haven't got it all straightened out and
    may end up starting
    > from scratch using divs instead. The "client" in this
    case is a web person
    > (back-end I think) and insisted on using "tables"
    because according to her
    > this
    > has less accessibility issues. Bottom line is I should
    use what I feel
    > comfortable with and what works for me and the site. Not
    only did she want
    > it
    > in "tables" but then wanted it set for 600 px wide, with
    percentages used
    > for
    > the columns... this project is going to drive me to
    drink...
    >
    > Maureen
    >

  • It seems that Google search is not compatable with Firefox 9.0.1? Any fixes for this?

    I just upgraded to Firefox 9.0.1 Suddenly, my Google toolbar search does not work. Any work around or fix for this?

    Why do these companies do this!! They take something useful screw it up out of mere caprice just to keep their programmers busy. I sure some genius at Google thinks this was a good idea. "Let's really annoy our users by making it more difficult to use our sites. Oh but it looks so cool now". Change for the sake of change is annoying and idiotic and I hate it.
    Baloney. I have tried Safari, Google Chrome, and Opera and all support the top navigation bar in Google Earth and Finance. Firefox is the problem!

  • Any fixes for drag and drop not working in WAD with IE9?

    I have exactly the same issue as is described in WAD Problem - can't modify and Drag&drop in Web App Designer (WAD) doesn't work but unfortunately I don't have the option of going from IE9 back to IE8.  Has anybody found a fix for using drag and drop in WAD with IE9?
    Edited by: Jason Muzzy on Jul 22, 2011 1:09 AM

    Hi Jason,
    Thanks for replying .
    But I am facing this isssue in Web Application Designer. The link which I have shared shows the behavious of cursor while dragging and dropping
    Drop not allowed ("blocked traffic" sign)
    Drill across (arrow pointing to the right)
    Drill down (arrow pointing down)
    Exchange dimensions (exchange icon)
    Add to filter (add icon)
    Remove from filter (remove icon)
    Reorder list (reorder icon).
    This issue I am getting in Web Application Designer itself.In WAD 7.X ANALYSIS TABLE do we have any option from which we can disable drag and drop of cells because it is destroying the view of report output .
    In WAD 7.X we have option of Activate Navigation in ANALYSIS TABLE but if we disable this our context will get disable and it shows the default Browser context menu.We have not provided any such options so that its original layout will retain back .
    The solution they have mentioned to Disable Drag and Drop is not available in WAD ,its available in Analyzer.
    Please let me know if you have found any solution for this.

  • Horizontal Navigation Pattern

    Hello Experts,
    In the Theme Editor under System Admin > Portal Display, there is an element called Patterns. Under here, there is a preview of "Horizontal Navigation Pattern" where you can modify background images for navigation TABS.
    How can I use this style of navigation TAB for the top level navigation instead of the standard "Top-Level Navigation"?
    Many thanks in advance,
    Richard Cook.

    Hi Richard,
    Just trying to make the same change to the Top-Level Navigation as you attempted before.
    Did you successfully manage to make the change?
    Cheers
    Jay

  • Spry Horizontal Navigation Bar

    A horizontal navigation bar was created using Spry in CS3.
    The navigation bar needs to be lengthened.
    Does anyone know how to lengthen it so it spreads across the
    page?

    Hello,
    Can you post an URL?
    It's easier to tell you exactly what you might need to do.
    For example, it's a bit different if the nav bar is in a
    container with a
    width or not contained.
    Take care,
    Tim
    "Karen L." <[email protected]> wrote in
    message
    news:fsjtmm$3ea$[email protected]..
    >A horizontal navigation bar was created using Spry in
    CS3. The navigation
    >bar needs to be lengthened.
    > Does anyone know how to lengthen it so it spreads across
    the page?

  • [svn:fx-trunk] 12673: Integrating latest FXGUtils now that TLF 566 is in trunk ( which includes a fix for TLF 2497992).

    Revision: 12673
    Revision: 12673
    Author:   [email protected]
    Date:     2009-12-08 14:41:28 -0800 (Tue, 08 Dec 2009)
    Log Message:
    Integrating latest FXGUtils now that TLF 566 is in trunk (which includes a fix for TLF 2497992).
    Changelist: 646928
    Implementation-Title: FXG Compiler
    Implementation-Version: 1.414471
    BuildDate: 2009/12/04:03:06:24
    Notes:
    Made bitmap clipping implementation more efficient.
    Bug(s) Fixed:
    - #2491501 (Inconsistent word spacing results between MXMLC static and runtime compilation)
    - #2492932 (MXMLC gets null pointer exception on this FXG)
    - #2489341(FXG with a large BitmapImage results in a malformed SWF)
        - Added code to break down straight edges whose dx or dy exceeds 65535 twips into smaller segments.
    - #2495874 (many objects are missing in Opacity.fxg renders via MXMLC static compiler)
        - FXGUtils now ignores gradient entries of more than 15 gradient entries.
        - It logs warnings for such violations and continues processing.
    QE notes: Yes, please remove whiteSpaceCollapse="preserve" from static FXG mustella test cases or please regenerate bitmaps.
    Doc notes: N/A
    Localization: No, there are just resource strings removed in this changelist, no new strings.
    Bugs: N/A
    Reviewer: Sujata
    Tests run: Checkintests, mustella spark/core/fxg (25 failures all relating to tests that have whiteSpaceCollapse="preserve" but the reference bitmap do not expect this behavior and should be regenerated or tests modified).
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/fxg/FXGException_en.properties
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/fxg/swf/FXG2SWFTranscoder.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/AbstractFXGNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/ContentPropertyNode.j ava
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/TextNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/fills/LinearGradientF illNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/fills/RadialGradientF illNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/filters/GradientBevel FilterNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/filters/GradientGlowF ilterNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/strokes/LinearGradien tStrokeNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/strokes/RadialGradien tStrokeNode.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/sax/FXGSAXScanner.java
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/swf/ShapeHelper.java
    Added Paths:
        flex/sdk/trunk/modules/fxgutils/src/java/com/adobe/internal/fxg/dom/PreserveWhiteSpaceNod e.java

Maybe you are looking for

  • Solaris HTTP - MS IIS EOF bug, timeout failures

    Greetings, Experiencing what appears to be an "HTTP EOF" problem running on Solaris 2.7 (Apache ws) for several months. When my Perl script requests image files, from select remote servers, the requests hang as if waiting on the last packet to be rec

  • How to replicate data from custom field in SRM to ECC

    Hi, I am using SRM 5.0, as per my requirement i need to get data from SRM (Web GUI) through custom fields in "Confirm Goods", and need to pass this data to ECC, I found that Message type MBGMCR; IDOC Type u2013 MBGMCR01 can be used for passing the da

  • Price Changes during Billing

    Dear All We have a mandatory pricing condition for Material price and Customer price at order level. If the prices are not there then an automatic block is there on order. The issue is that if while creating the order the prices are maintained then t

  • Generation Question!

    Could someone please help me figure out which generation my Ipod mini is? I got it last christmas and have no clue what generation it is.

  • Getting Started on a podcatcher

    Hello, I am a computer science student, and I want to work on a project that I have been thinking about for awhile now on my break.. I want to write a java podcatching client.... I have found on sourceforge a c++ based client, that I am starting to d