Results 1 to 9 of 9

Thread: Chrome CSS Menu

  1. #1
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Chrome CSS Menu

    Hi guys,

    It's running on http://oscar.oundle.org/static/chrome but I get problem on the rollover part. You can see for yourselves that there seems to be a delay in the mouse over part; the divider disappears for a second and it all seems a bit sluggish.

    Any ideas, no-body seems to be able to fix it?

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Try taking things off of the page until it gets better.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    I was a little bored so I did the work for you. Apparently it is your server. The images are served too slowly for IE. If I use:

    Code:
    #chromemenu ul li a{
    float: left;
    color: #7F7F7F;
    font-weight: bold;
    padding: 6px 12px 6px 7px;
    text-decoration: none;
    background: url(http://oscar.oundle.org/general/headerbar/chrometheme/divider.gif) center right no-repeat; /*Theme Change here*/
    }
    I get the problems, if I do:

    Code:
    #chromemenu ul li a{
    float: left;
    color: #7F7F7F;
    font-weight: bold;
    padding: 6px 12px 6px 7px;
    text-decoration: none;
    background: url(http://www.dynamicdrive.com/dynamicindex1/chrome/chrometheme/divider.gif) center right no-repeat; /*Theme Change here*/
    }
    No problem.

    And this is all with the default demo version of the menu.

    Now, DON'T LINK TO DD FOR YOUR IMAGES but, you could get an image host perhaps, like photobucket or something. That may or may not help.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  4. #4
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Cheers for that; one final point - how do you change the colour of the text when it is a visited hyperlink (at the moment its going blue).

    Thanks,

    Max

  5. #5
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Also, how would I space out the top links for the drop down menus?

  6. #6
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    For visited color same as unvisited color either remove your page's global visited settings or add a custom visited for the menu:

    Code:
    #chromemenu ul li a:visited {
    color:red;
    }
    For wider header items, increase the red numbers

    Code:
    #chromemenu ul li a{
    float: left;
    color: #7F7F7F;
    font-weight: bold;
    padding: 6px 12px 6px 7px;
    text-decoration: none;
    background: url(divider.gif) center right no-repeat; /*Theme Change here*/
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  7. #7
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks; I must be asleep today!

  8. #8
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    OK, got another one. How do I centre the text forming the headers for the menus? (i.e. not left aligned)

  9. #9
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    The headers look centered to me in the demo.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

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