Coloured borders not appearing in Netscape/ Firefox

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

  1. #1

    Default Coloured borders not appearing in Netscape/ Firefox

    [url]http://217.146.112.210/test/index.html[/url]

    above is the site under construction - i am having issues getting the sub menu
    borders on the left appearing at all except in IE which is fine. Heres my CSS.
    What am i doing wrong?

    .submenu_link {
    text-align:left;
    background-color: #ffffff;
    border: 1px solid #98c3f0;
    border-top: 1px;
    border-bottom: 1px;
    height: 18px;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    }



    socks_ Guest

  2. Similar Questions and Discussions

    1. Firefox & Netscape menu dropdown not center
      The top navigation popup menu dropdowns created with javascript and layout controlled with CSS do not attach to the main menu and sit center with...
    2. flash animation - wrong placed in Firefox & Netscape
      Hi friends, i have XP PRO SP2 with these browsers : IE 6 , Netscape 8, Firefox 1.0.4 and with some websites i cant see the animations well...
    3. Need help with coloured scrollbars!!!
      Hi there, Thanks for checking me post out... I'm creating a webiste in Dreamweaver MX 2004. There are pages on the site with an iFrame which I...
    4. Annoying borders appearing on clicking slices with links
      I am trying to make an image banner that uses an image map with slices that have links and some rollover effects. Everything works fine, but my...
    5. coloured ls
      Le Thu, 3 Jul 2003 12:59:53 +0300, George <agdm@mail.ru> a écrit : ...
  3. #2

    Default Re: Coloured borders not appearing in Netscape/ Firefox

    A simple CSS issue;

    Instead of writing:
    border: 1px solid #98c3f0;
    border-top: 1px;
    border-bottom: 1px;


    Just write:
    border: solid 1px #98c3f0;

    There was no reason to write that extra piece of CSS when it was not
    necessary. I also suggest you learn web standards and move away from a table
    based layout as it is unwelcoming and unprofessional.

    LazyMoon Guest

  4. #3

    Default Re: Coloured borders not appearing in Netscape/ Firefox

    I assume you are talking about the thin blue border around the boxes on your
    page. I can see them in EI, NS, FF and Opera so I guess Lazy Moons answer
    worked for you. I did notice however that even though I am using a high speed
    T1 internet access, the borders and your top banner load very slowly. Checked
    your banner and it?s a fairly small image so I don?t quite know what the delay
    is. I also noticed that your banner is named ?banner600.gif? You should change
    that. Some security systems block pages or images named ?banner? as spam or
    ad-ware so some visitors to your site may be blocked from the banner or even
    the entire site.

    You might consider making your left and right borders taller than 1 pixel as
    your borders are being built one pixel at a time. Make them 10 pixels high and
    you might decrease the build time bay an order of magnitude?


    Michael Hager 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