Results 1 to 2 of 2

Thread: Adding an image link in switch menu

  1. #1
    Join Date
    Aug 2013
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Adding an image link in switch menu

    1) Script Title: Switch Menu

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...switchmenu.htm

    3) Describe problem: Trying to add an image link inside submenu on link is showing www.wallacechamber.com/www.site.com. address with menu on it is wallacechamber.com/members.htm Please anyone!?
    Last edited by jscheuer1; 08-08-2013 at 04:25 PM. Reason: Format

  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

    It has nothing to do with the script. You simply cannot have a link like this anywhere (from the members.htm page's source code):

    Code:
    <a href="www.murphfam.com"><img src="images/websitebutt.png" border=0></a>
    That needs to be:

    Code:
    <a href="http://www.murphfam.com"><img src="images/websitebutt.png" border=0></a>
    Otherwise the browser sees it as a link to a file or folder, either of which can have www and/or extra dots (.) in their names. Since there is no such file or folder on the wallacechamber.com site, you get a 404 Not Found. Without the http:// part the browser doesn't know to look out onto the greater web.

    Oh, and when linking to a domain (as opposed to a page on that domain), it's good practice to also add the trailing slash:

    Code:
    <a href="http://www.murphfam.com/"><img src="images/websitebutt.png" border=0></a>
    Less work for the browser to do.

    The browser cache may need to be cleared and/or the page refreshed to see changes.
    - John
    ________________________

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

Similar Threads

  1. Adding image-bullets to Glossy Accordion Menu
    By Stepper in forum Dynamic Drive scripts help
    Replies: 3
    Last Post: 02-06-2011, 03:32 PM
  2. Adding a graphic link to the Chrome Menu
    By KevInKauai in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 08-17-2010, 11:51 PM
  3. Adding a link in Lightbox image viewer 2.03
    By dee_em in forum Dynamic Drive scripts help
    Replies: 21
    Last Post: 01-29-2010, 08:35 PM
  4. Trouble adding a link with Chrome CSS Drop Down Menu
    By luke_laeser in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 10-31-2009, 08:13 AM
  5. Omnislide - Adding Form + Image to slide-in menu
    By justintime44 in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 09-19-2007, 02:22 AM

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
  •