CSS IE problem and navigation bar question

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default CSS IE problem and navigation bar question

    Hi

    I have 2 questions:

    Is there a way to make all elements of an horizontal navigation bar the same
    size no matter the size of the word? i think i can use a background image but
    maybe someoneknows other way..

    and the problem with IE is that im setting the bottom border style of a thing
    as dashed and thin but it looks like bold or something on IE and normal in
    firefox, does anyone knows a way to correct this?

    Thanks

    mfv84 Guest

  2. Similar Questions and Discussions

    1. Question on drill-in navigation
      Hi, I have a ViewStack in my main mxml. One of its child containers (a Search 'page') has a DataGrid. When I click a record in the DataGrid, I want...
    2. Web Navigation Bar and URL Question
      New to web programming. I have some very basic questions regarding menu bars. What's the best way to implement menu bar navigation? I looked at...
    3. Navigation Question
      Hello, For my website I use some PHP code for navigation. Therefore I use a directory structure which contains some navigation files the visitor...
    4. [PHP] navigation question
      On Mon, 15 Sep 2003 08:41:31 -0500, Andre created an award-winning crop circle <20030915134110.25572.qmail@pb1.pair.com>, which, when translated...
    5. Navigation Bar Question
      Hello The site isn't posted yet but here is the javascript: <script language="JavaScript" type="text/JavaScript"> <!-- function...
  3. #2

    Default Re: CSS IE problem and navigation bar question

    > Is there a way to make all elements of an horizontal navigation bar the
    > same
    > size no matter the size of the word?
    Use graphics for the menu elements.
    > and the problem with IE is that im setting the bottom border style of a
    > thing
    > as dashed and thin but it looks like bold or something on IE and normal in
    > firefox, does anyone knows a way to correct this?
    We would have to see your page.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "mfv84" <webforumsuser@macromedia.com> wrote in message
    news:ee0b2a$ihr$1@forums.macromedia.com...
    > Hi
    >
    > I have 2 questions:
    >
    > Is there a way to make all elements of an horizontal navigation bar the
    > same
    > size no matter the size of the word? i think i can use a background image
    > but
    > maybe someoneknows other way..
    >
    > and the problem with IE is that im setting the bottom border style of a
    > thing
    > as dashed and thin but it looks like bold or something on IE and normal in
    > firefox, does anyone knows a way to correct this?
    >
    > Thanks
    >

    Murray *ACE* Guest

  4. #3

    Default Re: CSS IE problem and navigation bar question

    you can do this with css. Set the link to display block (i use [BULLET][LI]<a>
    for my menus, fyi)

    #navigation ul li a{
    display: block;
    width:100px;
    height:20px;
    padding:5px;
    background-color:#.......
    }

    digitalus media Guest

  5. #4

    Default Re: CSS IE problem and navigation bar question

    The problem with that is what happens when someone increases the text size
    in the browser. As far as I know, the only way to avoid such problems is to
    use graphics for the menu options.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "digitalus media" <webforumsuser@macromedia.com> wrote in message
    news:ee16nl$htt$1@forums.macromedia.com...
    > you can do this with css. Set the link to display block (i use
    > [BULLET][LI]<a>
    > for my menus, fyi)
    >
    > #navigation ul li a{
    > display: block;
    > width:100px;
    > height:20px;
    > padding:5px;
    > background-color:#.......
    > }
    >

    Murray *ACE* Guest

  6. #5

    Default Re: CSS IE problem and navigation bar question

    i fixed the IE problem by setting the border width to "1px" instead of "thin", and i tried the "display: block;" thing but it ordered the navigation bar vertically! maybe i'm missing something....


    mfv84 Guest

  7. #6

    Default Re: CSS IE problem and navigation bar question

    Yes - you are missing the float:left.... 8)

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "mfv84" <webforumsuser@macromedia.com> wrote in message
    news:ee1vtp$eud$1@forums.macromedia.com...
    >i fixed the IE problem by setting the border width to "1px" instead of
    >"thin", and i tried the "display: block;" thing but it ordered the
    >navigation bar vertically! maybe i'm missing something....
    >
    >

    Murray *ACE* Guest

  8. #7

    Default Re: CSS IE problem and navigation bar question

    [q]Originally posted by: Newsgroup User
    Yes - you are missing the float:left.... 8)
    [/q]

    Wow! thanks everybody =D


    mfv84 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139