I have successfully downloaded Dreamweaver, accessed my root files, and the remote server, but can't make any additions or deletions to my files. Is there another step that I should take?
Thank you for trying to help. I have long used the program and am upgrading because I changed to Lion on my IMac and version 6 of Dreamweaver no longer worked. I have a defined site and can access it. I can also access it on my remote site. I'm a teacher and only want to change the dates on my daily syllabus. I can't make any new entries at all.
I can't make any new entries at all.
So - what happens when you try? Are you not able to click on the spot where you want to make these changes? Can you make the desired changes in Code view rather than in Design view? Would it be possible for us to see the page you are unable to change so we can look at the code?
The mouse has no blinking cursor; it is literally unable to do anything in the document itself. The code view is just a jumble. I need to be able to see the changes that I'm making in perspective.
The page on my site that I'm trying to amend is http://faculty.scf.edu/frithh/ethics/T-Th%20Schedule%20(Spring).htm
Thank you for your response. I went to "view" in the menu bar, and indeed, I had live view checked. When I unchecked it, the view of the file became much darker and difficult to read, but the cursor did work. However, there was an unusual time lag between when I clicked behind a letter and when the cursor began to blink.
The code on the page is partly responsible for your problems. For example, it looks like the page was built in about 1995 and never updated - meaning that the code is grossly archaic, however it is still rendered by browsers, so who cares. But the problem is that DW is not rendering with circa 1995 logic, and when it encounters things like this -
<table width="800" border="2" align="center" cellpadding="10" bgcolor="996633" bordercolor="#663333">
it doesn't cut that code a break and supply the missing octothorpe for the deprecated 'bgcolor' attribute value. So, what you saw when the page got darker was the disappearing background color on that table.
But - this is what happens when you try to maintain very old code in a very new authoring system....
Matthewone35 wrote:
ok, I have to show my ignorance. What in the world is an octothorpe?
It is a pound or hash sign : #
I believe Murray wanted you to change this:
<table width="800" border="2" align="center" cellpadding="10" bgcolor="996633" bordercolor="#663333">
To this:
<table width="800" border="2" align="center" cellpadding="10" bgcolor="#996633" bordercolor="#663333">
Hope this clarifies the "whiff-whaff".
Matthewone35 wrote:
ok, I have to show my ignorance. What in the world is an octothorpe?
http://en.wikipedia.org/wiki/Number_sign
In Australia, we call it the hash symbol.
North America
Europe, Middle East and Africa
Asia Pacific