Toolbar Not Working (adobe Dreamweaver) - I dont know why but it doesnt link.

free web hosting
Open Discussion > General > Hosted Members Area

Toolbar Not Working (adobe Dreamweaver) - I dont know why but it doesnt link.

lilemi
See, my toolbar is made up of 8 buttons. They are:

Home | Lessons | Theory | Links
Videos| Extras | Forums | Feedback

To make my website, I use adobe Dreamweaver CS3. if youve ever used it, youll know that if you want to make an image a link, you need to click it and fill in the link box at the bottom and then make the border 0. The annoying thing is, lets say I type in in the link box for Home "index.html". Then, I take a look at lessons. Suddenly, that box is filled with index.html too! So, I quickly change that box to lessons.html. But then (this is where the problem is) home is also now lessons.html! WTF!!!

Home, lessons, theory, links, videos and extras are all one link. Forums and feedback are a second one. So, in my entire toolbar I have access to a whooping 2 links. Besides the links at the bottom of the page of course.

Did i put them in wrong? I did it before and it worked perfectly, then I changed my layout and now it's completely messed up... my faulty toolbar in action:

www.guitarpick.trap17.com

(I hope this isn't considered advertising my site, because I'm not trying to.)

 

 

 


Reply

reconraiders
Hmmm... I think you might be doing something wrong. You should be able to change the "href" property of EVERY link in the "properties" window of DW. If you click on a particular tag or element in the design window it will show the properties of it in the properties window. Also, dreamweaver has a cool feature that allows you to create a navbar just like yours using a very simple interface. Just click Insert->Image Object->Navbar (I think). You just fill in the image location, the href, etc. You can even have DW create rollover navbars using this. You should try it out, it might work better for you.

Reply

lilemi
recon: thanks for the fast reply. Im pretty sure im doing the image inserting process right, but I'll try insert thing. Is it spry??

Reply

reconraiders
Ahhh. I just took a look at the source code from your site. It seems that you have the IMG tags correct BUT you don't have the <A> tags correct. You don't have every image linked. You have "Home, Lessons, Theory, Links, Videos, and Extras" under one link and "Forums and Feedback" under another link. You need to make a link for EACH image and edit each one separately. The code for each link/image should look like this...

CODE
<a href="blahblah.html"><img src="something.gif" /></a>


Using the DW navigation bar might be better for you if you don't know much about html.

btw. I don't even really know what spry is but I'm pretty sure that's not spry. wink.gif

If you need any other help just post wink.gif

 

 

 


Reply

lilemi
Ooo..... Ill see if i can figure out how to open the CSS on dreamweaver (I've done it loads of times by accident). I'll update when I figure it out. Spry is just kinda like little widgets you can make. I know you can make toolbars with spry, I've seen it but I don't really want to....

Checking the CSS.

EDIT: I don't understand! It doesn't change the actually thing when i change the coding! This is the code right now:

CODE
<p align="center">

<a href="index.html"><img src="../public_html/images/Home Button.jpg" alt="Homepage of GuitarPick.com!" width="177" height="34" border="0" />
<a href="lessons.html"><img src="../public_html/images/Lessons Button.jpg" alt="All sorts of lessons from GuitarPick.com and other sources!" width="182" height="34" border="0" /><img src="../public_html/images/Theory Button.jpg" alt="Music theory lessons compiled and supplied by GuitarPick.com!" width="181" height="34" border="0" /><img src="../public_html/images/Links Button.jpg" alt="Links to webpages that contain music/guitar related items that GuitarPick doesn't supply." width="171" height="34" border="0" /><img src="../public_html/images/Videos Button.jpg" alt="Music and guitar related videos! Feel free to submit some of your own." width="177" height="36" border="0" /><img src="../public_html/images/Extras Button.jpg" alt="Extras such as banners, graphics, wallpapers and more!" width="182" height="36" border="0" /></a>

<a href="feedback.html"><img src="../public_html/images/Forums Button.jpg" alt="[UNDER CONSTRUCTION]" width="181" height="36" border="0" /><img src="../public_html/images/Feedback Button.jpg" alt="Comments? Suggestions? Please give is your honest comments and support!" width="171" height="36" border="0" /></a></p>


So, basically, as you can see, i put in <a href="lessons.html" in the beginning of the econd line. It doesn't change anything. Now the coding says it changes to lessons, but the like design bit of dreamweaver tells me they both point to the same thing >_< !?!?!?!?!?

Is dreamweaver broken or something?

Reply

reconraiders
you must have <a href="..... for EVERY image AND don't forget your closing tag </a>

Just change your code to this and it should work. Notice the "href" property of the <a> tags. You need to change that to the actual locations of your pages in order for the links to work.

CODE
<p align="center">
     <a href="index.html">
          <img src="../public_html/images/Home Button.jpg" alt="Homepage of GuitarPick.com!" width="177" height="34" border="0" />
     </a>
     <a href="lessons.html">
          <img src="../public_html/images/Lessons Button.jpg" alt="All sorts of lessons from GuitarPick.com and other sources!" width="182" height="34" border="0" />
     </a>
     <a href="">
          <img src="../public_html/images/Theory Button.jpg" alt="Music theory lessons compiled and supplied by GuitarPick.com!" width="181" height="34" border="0" />
     </a>
     <a href="">
          <img src="../public_html/images/Links Button.jpg" alt="Links to webpages that contain music/guitar related items that GuitarPick doesn't supply." width="171" height="34" border="0" />
     </a>
     <a href="">
          <img src="../public_html/images/Videos Button.jpg" alt="Music and guitar related videos! Feel free to submit some of your own." width="177" height="36" border="0" />
     </a>
     <a href=""><img src="../public_html/images/Extras Button.jpg" alt="Extras such as banners, graphics, wallpapers and more!" width="182" height="36" border="0" />
     </a>
     <a href="feedback.html"><img src="../public_html/images/Forums Button.jpg" alt="[UNDER CONSTRUCTION]" width="181" height="36" border="0" />
     </a>
     <a href=""><img src="../public_html/images/Feedback Button.jpg" alt="Comments? Suggestions? Please give is your honest comments and support!" width="171" height="36" border="0" /></a>
</p>

Reply

Tramposch
QUOTE(reconraiders @ Aug 12 2007, 01:59 PM) *
you must have <a href="..... for EVERY image AND don't forget your closing tag </a>

Just change your code to this and it should work. Notice the "href" property of the <a> tags. You need to change that to the actual locations of your pages in order for the links to work.

CODE
<p align="center">
     <a href="index.html">
          <img src="../public_html/images/Home Button.jpg" alt="Homepage of GuitarPick.com!" width="177" height="34" border="0" />
     </a>
     <a href="lessons.html">
          <img src="../public_html/images/Lessons Button.jpg" alt="All sorts of lessons from GuitarPick.com and other sources!" width="182" height="34" border="0" />
     </a>
     <a href="">
          <img src="../public_html/images/Theory Button.jpg" alt="Music theory lessons compiled and supplied by GuitarPick.com!" width="181" height="34" border="0" />
     </a>
     <a href="">
          <img src="../public_html/images/Links Button.jpg" alt="Links to webpages that contain music/guitar related items that GuitarPick doesn't supply." width="171" height="34" border="0" />
     </a>
     <a href="">
          <img src="../public_html/images/Videos Button.jpg" alt="Music and guitar related videos! Feel free to submit some of your own." width="177" height="36" border="0" />
     </a>
     <a href=""><img src="../public_html/images/Extras Button.jpg" alt="Extras such as banners, graphics, wallpapers and more!" width="182" height="36" border="0" />
     </a>
     <a href="feedback.html"><img src="../public_html/images/Forums Button.jpg" alt="[UNDER CONSTRUCTION]" width="181" height="36" border="0" />
     </a>
     <a href=""><img src="../public_html/images/Feedback Button.jpg" alt="Comments? Suggestions? Please give is your honest comments and support!" width="171" height="36" border="0" /></a>
</p>


All correct, but emily, it sometimes makes life easier if you just put "images/image.extension" instead of "../public_...etc" because the public_html is the same.. directory as WWW in ftp (file transfer protocal) and if you do not understand, we put your url in the adress bar, guitarpick.trap17.com, and it takes us to the index.html, you don't need to type in guitarpick.trap17.com/public_html/index.html, although you can... more of a description, if the file is in public html, when you call on another file.. like in index.html, when you call on an image, you just start from that directory, instead of adding the parent directory, understand? if u need more questions, just drop by lol are u sure u want as to throw away your shoes ?? tongue.gif well just ask if you need anything else

Reply

iGuest
Why Do I have to add ../.. or ../../.. in front of the image src file?
Toolbar Not Working (adobe Dreamweaver)

When I copy my images from one page (let's say, main page in directory /) to the other page of my server ( mayb in /archive/2008/), my img will go broken, and I have to update it with ../.. For this image if I'm pasting it into this directory. Is there any way dreamweaver will do it for itself.

And some images src are external link, but it didn't work out for me either when I copy the whole image to other page in other directory in my same server.

Is there any solution for me?
Thank You

-question by Kevin

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Recent Queries:-
  1. dreamweaver 8 tool bar freezes - 674.59 hr back. (1)
  2. forward & back arrows not working in firefox - 721.15 hr back. (1)
  3. adobe cs3 not working when online - 778.88 hr back. (1)
  4. why is the down image in dreamweaver not working in the browser - 795.18 hr back. (1)
  5. my color text is not working all of a sudden. why - 809.67 hr back. (2)
  6. dreamweaver cs3 properties window not working - 841.24 hr back. (1)
Similar Topics

Keywords : toolbar, working, adobe, dreamweaver, doesnt, link,

  1. The System Doesn't Let Me Apply For Hosting Upgrade [resolved]
    (4)
  2. Mysql Database Not Working
    (3)
    well i'm getting an error message(a databass connection warning) for all of the parts of my site
    that connects to a mysql database i check my database users pertmissions and i try to do the repair
    database thing and it's still not woeking. am i the only person having this or is it an overall
    trap17 issue and how do i fix it.....
  3. Gallery Not Working
    (2)
    Alright, the Gallery module from Fantastico always used to work for my site. Now it's suddenly
    stopped functioning and I can't even access the control panel for it. My Iframe page linking to
    it gives one long error message: QUOTE Error Error (ERROR_STORAGE_FAILURE) : * in
    modules/core/classes/GalleryStorage.class at line 226 (GalleryCoreApi::error) * in
    modules/core/classes/GalleryStorage.class at line 453 (GalleryStorage::_getConnection) * in
    modules/core/classes/Gallery.class at line 202 (GalleryStorage::search) * in
    modules/core/classes....
  4. Backup Not Working [resolved]
    (5)
    I am trying to backup my files on my account(in preparation for the next server disaster), and I am
    unable to download it. In my CPanel I goto the back-up screen to generate a full backup. Once
    that's done and its ready to be downloaded, It only downloads to 13% or 50mb before stopping.
    With and without a download manager. It doesn't help that resume is not supported in download
    managers. I have too many files on my account to backup with an FTP client, that would take hours
    and hours. What can I do to get a backup of my account?....
  5. File Manager Not Working
    (2)
    When I goto upload files using the file manager(legacy mode), the files do not upload correctly.
    Every time I try to upload a file, it takes the time to upload it, but the file always comes out
    being 0kb so it does not upload the file. Why is this happening?....
  6. Broken Link!
    (4)
    Just so you guys know, there is a broken link at the top of alot of your pages for computing web
    hosting. It goes to a site that doesn't exist. And the graphic for Imagefilez.com is also
    broke. Wasn't sure where to post, so here you are!....
  7. Joomla 1.5.2 Broken Link?
    Add New User won't work (3)
    So I wiped the whole slate clean and noticed they've got 1.5.2 now, so I installed it. When I
    went to add another admin under the user manager menu, it did nothing when I clicked on "NEW" in the
    upper right. This link is broken or something else is wrong here. I need to be able to add other
    admins to get this thing off and running... Someone help me please... Admin??? Edit: I've come
    to the conclusion that the software that's on the server is bad. Could you, Shree, or someone
    over at Xisto please download a new copy of 1.5.2 to replace the one that's the....
  8. Server Status Link Doesn't Work
    (1)
    Hey, I tried going to the xisto menu on the top right of the forums and the server/network status
    link doesnt work, it leads to: http://www.xisto.com/helpdesk/index.php?cmd=status I get, The
    requested URL /helpdesk/index.php was not found on this server. Is this a out-dated link?....
  9. Css Problem On Website
    I've uploaded the html/css files but the css isn't working/ (8)
    Help? I've uploaded all of the html files and css files into the public_html folder , but the
    css isn't taking effect. I've checked both the css and te html files , nothing wrong with
    them. Halp me? www.genesis.trap17.com/home.html /sad.gif" style="vertical-align:middle" emoid=":("
    border="0" alt="sad.gif" />....
  10. The Cgi Centre In Cpanel Isn't Working!
    (4)
    I was just randomly accessing the cPanel today and when I tried accessing the 'CGI Centre'
    It gives me this error message CODE <!-- Let's Not see the results of the install
    of cgiemail ... safeunlock: Invalid arguments at /usr/local/cpanel/SafeFile.pm line 91.
    SafeFile::safeunlock(undef) called at /usr/local/cpanel/Cpanel/FileUtils.pm line 331
    Cpanel::FileUtils::safecopy('/usr/local/cpanel/cgi-sys/randhtml.cgi-wrap'
    ;, '/home/obelisk/public_html/cgi-bin/randhtml.cgi') called at /usr/local....
  11. My Subdomain Not Working
    imbibe.in (3)
    I have a addon domain in my account (ramansingla.info): imbibe.in All subdomains on imbibe.in work
    fine but one. ike.imbibe.in isn't working. It's more than 24 hrs that I created it. Also
    when I tried to change Nameservers for ramansingla.info at GoDaddy for Primary Nameserver I entered
    NS.COMPUTINGHOST.COM & GoDaddy said Invalid. Kindly help as it is urgent. Thanks & resolved .......
  12. Confirmation Code For Registration Users
    Why a confirmation code doesn't show on non-subsilver templates? (3)
    So yeah like the title states, I'm using this other template (fi subgreen) and for some reason
    when I go on the registration page of my forum it won't show the confirmation code. Is there
    something specific I'm supposed to edit to show this? Let me know the specifics please. I
    appreciate it, thanks. specific link: http://legendsofhyrule.trap17.com/zelda/pr...amp;agreed=true
    to get fisubgreen go to www.phpBBhacks.com and type in fisubgreen.....
  13. Have There Been Any Changes?
    PHP script not working anymore. (1)
    Hi, I was wondering if any changes have been made to the PHP and/or MySQL section at trap 17. All of
    a sudden a PHP script is beginneng to give errors where it never did before. I have a greeting card
    system on my website, and all of a sudden, when I try to add a card I get a load of errors, while I
    have not changed any code. These ar erthe errors i am getting: CODE Warning:
    imagecreatetruecolor() [function.imagecreatetruecolor]: Invalid image dimensions
    in /home/mrdee/public_html/kaart/admin/classes/class_images.inc.php on line 200 Warning&....
  14. Changes In Phpmyadmin
    Access to my database from program not working anymore. (0)
    I was wondering if something has changed in the MySQL or PHPMyAdmin section of Trap 17. (Hope I am
    explaining this correctly). I run a newsletter system on my website and the details of the people
    who subscribed are in a MySQL database. To get those data from the database and to send the
    newsletter to all subscribers I use a program called "Qios Pelican". Up to now it always worked
    perfectly, but now it cannot seem to retrieve data anymore, yet I have not changed anything to my
    setup. I use the MySQL OLEDB Provider driver to connect, and in case it helps, here are the ....
  15. Bandwidth Counter Not Working
    (17)
    In my CPanel, the bandwidth counter is constantly at 0, it never changes. I can never see how much
    bandwidth I've used this month. My awstats never work also, so i have no idea how much traffic
    is coming through my site. Does anyone know how I can fix my bandwidth counter? Thanks.....
  16. Awstats Not Working
    (2)
    When I click into my Awstats, I get the following error: QUOTE Error: Couldn't open config
    file "awstats.leoncreations.trap17.com.conf" nor "awstats.conf" after searching in path
    ".,/home/leonc/tmp/awstats/,/etc/opt/awstats,/etc/awstats,/etc,/usr/local/etc/awstats": No such file
    or directory - Did you use the correct URL ? Example:
    http://localhost/awstats/awstats.pl?config=mysite Example:
    http://127.0.0.1/cgi-bin/awstats.pl?config=mysite - Did you create your config file
    'awstats.leoncreations.trap17.com.conf' ? If not, you can run "awstats_configu....
  17. .php?id=html Not Working
    (15)
    I use a single php file for all my tag decorations and image calling so that each page is lighter
    and therefore isn't bogged down with the same repeated code over and over, which allows me not
    only to much easier change my layout and design (as I often do) but once I've finally gotten it
    up and working here, I realized none of the links work, I doubled, and triple checked them over and
    over again to make sure I wasn't making a mistake. I swore trap17 supported php, so why
    isn't it working? Am I missing some sorta code that i need to add, or need to take a....
  18. Web/ftp Stats Not Working [resolved]
    I need help here (2)
    I tried to access my web/ftp stats page and the error below was what I got. Error: Couldn't
    open config file "awstats.microncyber.uni.cc.conf" nor "awstats.conf" after searching in path
    ".,/home/odomike/tmp/awstats/,/etc/opt/awstats,/etc/awstats,/etc,/usr/local/etc/awstats": No such
    file or directory - Did you use the correct URL ? Example:
    http://localhost/awstats/awstats.pl?config=mysite Example:
    http://127.0.0.1/cgi-bin/awstats.pl?config=mysite - Did you create your config file
    'awstats.microncyber.uni.cc.conf' ? If not, you can run "awstats_config....
  19. D-22 Shoutbox Not Working [resolved]
    HELP!!!!! (3)
    i have just download d-22 shoutbox for my ipb forum, i flowed the instructions exactly and it
    installed. but when i type something into the field and click shout nothing happens. i have
    reinstalled it, gone to the d-scripting website and no-one can fix it but it does work because it is
    here can anyone help??....
  20. Problem With My Hosting [resolved]
    Cpanel not working (5)
    Hello, I seem to be having a problem with my Cpanel. Try as I might, I just cannot get the cpanel to
    load. I keep getting a page not found error. I'm using the same thing I've been using to
    access it, sitename.trap17.com/cpanel.....
  21. Sub Domains
    link (2)
    ok so my sight here is www.blockwars.trap17.com if i want to enter a subdomain do i put
    www.blockwars.trap17.com/abc or www.blockwars.trap17.com/abc.html also i created a page
    'cheese' (i just did it for testign /tongue.gif" style="vertical-align:middle" emoid=":P"
    border="0" alt="tongue.gif" />) in public html. But when i enter www.blockwars.trap17.com/cheese. I
    get HTTP404 Not found thingie whats wrong?....
  22. Making Custom Error Pages With Cpanel
    Not working properly (4)
    I set up the custom error pages using CPanel, but they aren't working properly. I get the
    standard error code. CODE The requested URL was not found on this server. Additionally, a 404
    Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Plust that little bit on the end. Am I doing something wrong or is it something that needs to be
    handled by an admin?....
  23. Web Mail Forwarding Not Working?
    (0)
    I set up a several email accounts on Cpanel, and am trying to forward the mail from some of them to
    a gmail address. So far nothing's been forwarded. Also, when composing email, I've noticed
    the "receipt" function doesn't work. Any clues, anyone? On another note, I noticed Cpanel
    reverted back to it's former state after a brief upgrade. What's the latest with Cpanel?
    Several days later and still no response? /huh.gif" style="vertical-align:middle" emoid=":huh:"
    border="0" alt="huh.gif" /> Mmkay, guess I'll pm admin directly.........
  24. File Manager In Cpanel Doesn't Work With The Browser Konqueror
    (1)
    The version of Konqueror that comes with Knoppix 5.1 doesn't support the file manager in the
    cPanel. I've included a picture. However the File Manager works just fine with
    Iceweasal, the equivelant browser to Firefox. ....
  25. Smtp Server Is Not Working...?
    I think there is a prob. with my SMTP server (4)
    I am posting this because I believe there is a problem with my SMTP server (at Trap17.com). I have
    been trying to send mail with PHP using the mail() function. Although PHP did not return any errors,
    none of the mail was actually sent... I have enclosed a copy of 2 different codes I have tried to
    use. Either I'm making a mistake with these codes or there js a problem with my SMTP server. If
    there is a mistake with my code, please tell me what is wrong. Otherwise, maybean admin can look at
    my SMTP server configuraton to make sure it works. CODE 1 CODE $email....
  26. Earning Credit By Referring To Forum For Signup!?
    is there any referal link here? (14)
    i only wnated to know if there is an option to refer someone here for signup and earn credit or
    not!? thanks....
  27. Site Not Working!
    (7)
    i had just registed myself on trap17 in the create a forum thingy and i cant get onto my site its
    not letting me get onto the site or the control panel or the ftp, it just keeps saying PROBLEM
    LOADING PAGE, please help me /sad.gif" style="vertical-align:middle" emoid=":(" border="0"
    alt="sad.gif" />....
  28. Help My Forum Connection Isn't Working
    (4)
    can anybidy help me. I have had a forum amde and I can;t access it??????? Contribute with quality.
    You could have gave more information like which forum software, URL to your forum, what error
    message and the exact nature of the issue, i.e. it shows this but not that...or not showing at all. ....
  29. Problems With Outlook Express
    My email configuration isn't working (7)
    Does anyone have a clue as to why my outgoing email isn't working with Outlook express? I can
    get incoming mail, but I'm getting an error when I try to send email. I followed the
    configuration instructions, but it still isn't working correctly. I get an error everytime.....
  30. My File Manager Is Working
    (2)
    I tried to change the html for my site in file manager but it just has the default page - the one
    when you activate your site. /sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' />
    How do i change files?....

    1. Looking for toolbar, working, adobe, dreamweaver, doesnt, link,

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for toolbar, working, adobe, dreamweaver, doesnt, link,

*MORE FROM TRAP17.COM*
advertisement



Toolbar Not Working (adobe Dreamweaver) - I dont know why but it doesnt link.



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE