|
jukeyard
|
 |
« on: September 21, 2004, 10:30:27 AM » |
|
I am working on a new page in DW I have the split screen with the graphics at the top and the script text in the bottom screen. The bottom screen has the side to side and top to bottom scroll bars, but the top screen with the graphics does not, so I can not scroll around the page. Is their a way to add the scroll bars?
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
leighsww
|
 |
« Reply #1 on: September 26, 2004, 03:05:59 PM » |
|
Did you get this resolved, jukeyard?
If not, post a link to the page are you referring to?
|
|
|
|
|
Logged
|
|
|
|
|
jukeyard
|
 |
« Reply #2 on: September 26, 2004, 06:41:42 PM » |
|
Hello leighsww, the problem is not on a published page on the site but a page I am creating in dreamweaver, the top window where you can view the contnet of the page does not have the scroll bars for me to scroll down the page to view or edit. If the scroll bars are there you can usually scroll to anyplace on the page, point and click, then the curser will go to that point in the lower html window for editing. The only way I can view the page without the scroll bars is to do a view through browser.
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
leighsww
|
 |
« Reply #3 on: September 26, 2004, 07:21:31 PM » |
|
So, what you are saying is that you have content that exceeds the frame/window in Dreamweaver's "design view" mode, yet you can't get to it due to the horizontal scroll bar doesn't appear? Is this correct?
I have the code view in the top frame and the "design view" on the bottom frame, but the horizontal scroll bar doesn't show for me until my content exceeds the frame/window size. I tried reversing the view so code appears on bottom and design view on top, but I get the same results. I still get the scroll bars when content exceeds frame.
If you do have content that extends/exceeds the frame in "design view", yet the scroll bar still doesn't show, then try playing around with the various settings under "View" from the menu and see if anything helps this.
Otherwise, you may want to reinstall the Dreamweaver software, in case something got corrupted.
|
|
|
|
|
Logged
|
|
|
|
|
jukeyard
|
 |
« Reply #4 on: October 20, 2004, 11:30:25 AM » |
|
I have the page on line now www.handtub.com the buttons to the left of the page are the ones I am refering to I need to make those buttons scroll. There is anothe button on the bottom that does not come up without scroll. Also unrelated....I want to make these buttons hot so that when one is clicked on it will open a whole new window with the page. I tried makeing one a hyper link, I left the text box blank then entered the link. Problem was the text of the link covered the button.
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
leighsww
|
 |
« Reply #5 on: October 20, 2004, 11:40:25 AM » |
|
You currently have this in your frameset: <frame src="HTbuttons.htm" name="leftFrame" scrolling="NO" noresize> Remove the scrolling="NO"For your buttons to be a link, you'll want to use the "hotspot" tool in DW. In your Properties window, look where it says "Map" and you'll see the "Rectangle Hotspot Tool". Click and drag your cursor around the button and it will create a hotspot for the link. To open the hotspot link in a new window, set "Target" to _blankYou can find further info in the DW "HELP" under "Hotspot" (then look at the "in image maps" instructions) and that should give you more detailed info.
|
|
|
|
|
Logged
|
|
|
|
|
jukeyard
|
 |
« Reply #6 on: October 20, 2004, 12:53:20 PM » |
|
Great! But where do I find the frameset with the frame src. I have looked on each page but can't find it. Thanks for help.....Again!! 
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
leighsww
|
 |
« Reply #7 on: October 20, 2004, 12:58:43 PM » |
|
Unless you have a referrer for your domain name pointing to a different file, then it's probably your "index.htm" page. Look at your "index.htm" source code and if it looks like this: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>
<frameset rows="148,27*" cols="*" frameborder="NO" border="0" framespacing="0"> <frame src="HTheader.htm" name="topFrame" scrolling="NO" noresize > <frameset rows="*" cols="147,*" framespacing="0" frameborder="NO" border="0"> <frame src="HTbuttons.htm" name="leftFrame" scrolling="NO" noresize> <frame src="HTtextpics.htm" name="mainFrame">
</frameset> </frameset> <noframes><body>
</body></noframes> </html> Then that's it.
|
|
|
|
|
Logged
|
|
|
|
|
jukeyard
|
 |
« Reply #8 on: October 20, 2004, 01:19:48 PM » |
|
I thought it would be in index.htm as that is what I thought the page loaded up from but it is not, This is all that is in index.htm I looked in and at every frame for the page but can not find the "frameset" you showed in previous message. The only img src in index.htm is one that points to the header.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<HTML LANG=en-US>
<HEAD>
<TITLE>Handtubs</TITLE>
<LINK REV="made" href="mailto:handtub@thejukeyard.com">
<META NAME="keywords" CONTENT="">
<META NAME="description" CONTENT="">
<META NAME="author" CONTENT="Ray">
<META NAME="ROBOTS" CONTENT="ALL">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<body bgcolor="#000000" text="#FFCC66" link="#FF0000" vlink="#CC3333" alink="#990000" background="brick007.jpg"></head> <div align="justify"></div> <div align="center"></div> <div align="justify"></div> <div align="center"></div>
<div align="center"> <p align="center"><img src="www/photos/pumper.jpg" width="907" height="126"></p>
</div>
</body>
</html>
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
leighsww
|
 |
« Reply #9 on: October 20, 2004, 01:37:04 PM » |
|
Do you know what this is? http://www.w3.org/TR/html4/frameset.dtd That seems to be referenced in the source code of the file when accessing your domain name. Do you have a file with a .dtd extension that is linked to your domain URL? I have to run some errands today, so I'm going to be out for a while. If someone else doesn't jump in to help you, I will be back later and will see if we can figure out what your frameset file is called. It should be the file that is called up when your domain is accessed. You need to find out what that is. It's normally a file named "index". Anyway, in the meantime, please check to see if you have this "frameset.dtd" file and find out what that's all about.
|
|
|
|
|
Logged
|
|
|
|
|
jukeyard
|
 |
« Reply #10 on: October 20, 2004, 01:43:29 PM » |
|
OK I found how to get to it. If I view index.htm with a text editor it comes up. I tried deleting the line scrolling="NO" then saved it. I went and looked at the site but the scroll was not there, I went back to the text editor and the scrolling="NO" line was back...I tried deleting it several times as well as just adding "yes" to the line but each time I saved and closed the window then opened it again the line was set back in place scrolling="NO". Do you know how I can make it a permanenet save??
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
leighsww
|
 |
« Reply #11 on: October 20, 2004, 01:49:34 PM » |
|
Try going in through cPanel to edit that file:
1) Click on "File Manager" 2) Click on the folder icon of the "public_html" 3) Click on the filename of the file you want to edit 4) In the upper right-hand corner, click on "Edit File" 5) Do your editing, then click the "Save" button on the bottom
|
|
|
|
|
Logged
|
|
|
|
|
jukeyard
|
 |
« Reply #12 on: October 20, 2004, 03:07:38 PM » |
|
Don't have a clue how that www.w3.org line got attached to page. Going to control panelc to edit worked. I took that w3 thing out and the no scroll line. I now have it to scroll up and down but it also added a scroll side to side, I tried shrinking the width of the table but the scroll did not go away. Maybe I need to shrink more? On the target for the buttons......the page for the first button is called bstreet. the page I want that button to open is called bstreet2.htm for the target I put handtub.com/bstreet2.htm this did not work when you click on the button a page comes up saying the page can not be found. I also used handtub.com/bstreet2.htm in the link box. This site is an addon site to our business, the site is located in public_html/handtub/ maybe I need the full path name?
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
jukeyard
|
 |
« Reply #13 on: October 21, 2004, 05:31:55 PM » |
|
leighsww Everything seems to be working fine now, from local but can't test on line, my site has been down for most of day today and a good part of yesterday.
|
|
|
|
|
Logged
|
If it's to loud your to old! Rock on!
|
|
|
|
leighsww
|
 |
« Reply #14 on: October 21, 2004, 10:55:37 PM » |
|
I was able to access your site, and I see you've made updates, so you seem to be online and working at the time I am writing this.
Just FYI: In FireFox, your left frame still has the horizontal scrollbar quite prevalent, so if you want to get rid of that, you'll need to increase the frame's width more. In IE6.0 it looks fine.
You might want to download FireFox and see the differences for yourself.
|
|
|
|
|
Logged
|
|
|
|
|