Results 1 to 3 of 3

Thread: AnyLink Drop Down Menu

  1. #1
    Join Date
    Jul 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default AnyLink Drop Down Menu

    Hi all,

    I am hoping someone might be able to tell me how to make the text larger? I have tried to change the size and font, but it doesn't seem to be working.That is, the dropped down links appear larger, but no the anchor links?! Very frustrating....

    Grateful for any help! :-D

    Thanks,

    Anita

  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

    From the demo:
    Code:
    <a href="default.htm" style="font-size:1.5em;" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Web Design</a>
    You could also give each anchor tag a class name of say, anyAnchor:
    Code:
    <a href="default.htm" class="anyAnchor" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Web Design</a>
    then add to the style section:
    Code:
    a.anyAnchor {
    font-size:1.7em;
    }
    This is the preferred method.
    - John
    ________________________

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

  3. #3
    Join Date
    Jul 2005
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    "You can place the DIV anywhere on your page you see fit, and not necessarily directly below the anchor link."

    How? I try some mumbo jumbo with position in css but I can't manage to do that.

    Any help will be appretiated.

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
  •