Problem using Design view

I just converted a number of my sites over from GoLive CS2 to
Dreamweaver CS3. All the sites seem fine but when I go to look at
any pages in the Design pane (they use a template) of one of my
sites, the table is collapsed. (Yes, I am using nested tables
because of the way my shop is set up with my eCommerce.) But if I
can see everything fine in GoLive's Layout Tab then why can I not
see it in Dreamweaver like that.
Screen Print of GoLive
http://img409.imageshack.us/img409/6554/8pawgolivexf2.jpg
Screen Print of Dreamweaver
http://img527.imageshack.us/img527/8849/8ppawsdwsl7.jpg
Can you please view the source code at
http://www.8pawsup.com and find
where the problem may be. Or, if it is just a setting in
Dreamweaver, please let me know because, like I said before, my
other sites are fine in both except for this one. That is why I am
leaning towards it being a coding problem.
Thanks!

One of your most useful debugging tools is to validate the
page before
anything else.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"steffen74" <[email protected]> wrote in
message
news:fto9au$gp4$[email protected]..
> You are too awesome! I was sure it was just an oversight
on my template!
>
> Thanks a ton!

Similar Messages

  • Problem with Design View in DW5

    I've recently inherited responsibility for my group's website (despite the fact that I'm kind of a noob at all this) and am dealing with an interesting challenge that I hope someone can help me with.
    It seems that our pages are based on a number of templates that for some reason were not saved along with the rest of the site. Short term this is not a huge issue, as the pages have the source code from the templates embedded in them, but this code is not editable and I can't figure out a way to override the fact that I'm "locked out" from making any changes (at least from within Dreamweaver). Up to now I've just been editing the pages individually in Komodo, which is tedious but not horrible, given that our site isn't that big, but it's clearly no way to do business in the long term.
    So I'm trying to re-engineer some templates that I can work with. What I did was use Komodo to strip away all of the template-related language from one of the site pages, and re-imported the code back into Dreamweaver, in the hope that I can then save that as a new template. I'm close, but not quite there. My problem is that DW's Design View isn't rendering the page properly, even though it displays fine in Live View and in browsers. Maybe this isn't a huge deal, but it's really bugging me because: 1) I do rely on Design View, since I'm not an experienced programmer; and 2) I'm kind of anal retentive.
    To see what I'm talking about, here is the page I used as the foundation for creating a new template:
    http://iodp.ldeo.columbia.edu/TOOLS_LABS/TRIPLE/aps.html
    ... and here is my new "template" (although I haven't saved it yet as a DW template):
    http://iodp.ldeo.columbia.edu/TOOLS_LABS/TRIPLE/test3.html
    The second page displays correctly in Live View, Safari and Firefox, but not in DW's Design View, where it looks like this, at least on my computer:
    As you can see, there's an odd "break" between the banner image and the menus on the left, and the body of the page, which should appear to the right of the menus on the left, is instead underneath them. I'm at a loss as to why the same code displays properly for the first page, but not the second.
    I guess my questions are as follows:
    1) Does anyone else get the same messed up display in DW's design view if they import the second page into DW?
    2) And if so, can you pinpoint where the problem is?
    I hope I've explained this clearly and would really be grateful for help. Thanks!

    Validate your code and fix errors.  #1 problem is the lack of a valid Document Type Declaration (DTD) on line 1 of HTML code.
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    To add a DTD in DW:
    Go to Modify > Page Properties > Title/Encoding.
    Select document type from drop list.  I recommend HTML 4.0 Transitional.
    Hit Apply & OK. 
    Repeat Steps 1 - 3 on remaining site pages.
    I'm not a huge fan of DW Templates (.dwt).  I don't know how big your site is but it might be simpler to disconnect from Templates, giving you freedom to edit anything you wish.  Then use Server-Side Includes (SSIs) for common site wide elements such as menus, headers & footers.
    The great thing about SSIs is that you only need to edit one file, save it and upload to server.   Site pages are automatically updated by the server. With Templates, you have to upload every child page each time you change your template.  Even on small sites, this is tedious.
    Server-Side Includes
    http://www.smartwebby.com/web_site_design/server_side_includes.asp
    More on Server-Side Includes
    http://forums.adobe.com/message/2112460#2112460
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Link to CSS problem (in Design View)

    Hello Dreamweaver experts,
    In the Design View Dreamweaver CS3 is not picking up the
    styles specified in a linked stylesheet. Let me explain...
    I am using an application in our office that relies upon HTML
    (but does not use a standard web browser).
    I need to refer to linked stylesheets using a variable like
    so;
    [example #1]
    <link href="{FILES_DIR}/path/css/stylesheet.css"
    rel="stylesheet" type="text/css" />
    The use of the variable construction "{FILES_DIR}" eliminates
    the need to hard code a drive letter into the link which is
    preferrable. Without "{FILES_DIR}" I have to hard-code the drive
    letter like so;
    [example #2]
    <link
    href="file:///K|/additional-path-details/path/css/stylesheet.css"
    rel="stylesheet" type="text/css" -->
    Both examples above yield the same result in the application
    (the stylesheet is found and its styles properly applied).
    However, only with example #2 does Dreamweaver's "design
    view" pick up and apply the stylesheet. Dreamweaver cannot find the
    stylesheet or apply its styles using example #1.
    My question is how can I make Dreamweaver understand and
    apply what "{FILES_DIR}" means.
    Any tips, tricks or pointers would be most welcome...

    "horse.badorties" <[email protected]> wrote
    in message
    news:fh9o12$80d$[email protected]..
    > Hello Dreamweaver experts,
    >
    > In the Design View Dreamweaver CS3 is not picking up the
    styles specified
    > in a
    > linked stylesheet. Let me explain...
    >
    > I am using an application in our office that relies upon
    HTML (but does
    > not
    > use a standard web browser).
    >
    > I need to refer to linked stylesheets using a variable
    like so;
    >
    >
    [example #1]
    > <link href="{FILES_DIR}/path/css/stylesheet.css"
    rel="stylesheet"
    > type="text/css" />
    >
    > The use of the variable construction "{FILES_DIR}"
    eliminates the need to
    > hard
    > code a drive letter into the link which is preferrable.
    Without
    > "{FILES_DIR}"
    > I have to hard-code the drive letter like so;
    >
    >
    [example #2]
    > <link
    href="file:///K|/additional-path-details/path/css/stylesheet.css"
    > rel="stylesheet" type="text/css" -->
    >
    > Both examples above yield the same result in the
    application (the
    > stylesheet
    > is found and its styles properly applied).
    >
    > However, only with example #2 does Dreamweaver's "design
    view" pick up and
    > apply the stylesheet. Dreamweaver cannot find the
    stylesheet or apply its
    > styles using example #1.
    Did you look into "design-time" styles sheets? That may solve
    your problem.
    It won't take care of the path in the document though...
    Thierry
    Articles and Tutorials:
    http://www.TJKDesign.com/go/?0
    http://www.divahtml.com/products/scripts_dreamweaver_extensions.php
    - divaGPS - Add "you are here" highlighting to virtually any
    menu
    - divaFAQ - Create FAQ pages that toggle (show/hide) the
    answers
    - divaPOP - Easy, clean, standards-compliant popup windows.

  • Layout Problems in Design View

    Our wedsites use server side includes that control the way
    the page is laid out. My design view is not laid out the way it
    should be. If I go to the preview, it is perfect, but from the
    design view in Dreamweaver things are out of order. My navigation
    menu is hanging over my text, and I can't seem to get it to
    properly lay out on the page. Does anyone know how to fix this? I
    can email a copy of the page view if anyone wants to see it.
    Thanks!

    DW is perhaps confused by your doctype which seems to be
    suggesting both
    XHTML Strict and XHTML Transitional -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    I would say fix that, and the other validation errors from
    http://validator.w3.org first,
    and then we'll look at the page again.....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "TyhitiaF" <[email protected]> wrote in
    message
    news:ecl1dh$5a3$[email protected]..
    >I can show you what is is suppose to look like. If you go
    to the page
    >below
    > you can see what the pages look like online. My problem
    is, in design
    > view of
    > dreamweaver, the information about section to the left
    is placed over the
    > information to the right. Then all of it is shifted to
    the left.
    >
    >
    http://www.ualr.edu/admissions/
    >

  • Problems using ECL Viewer to display multipage TIFF Files

    Hey there!
    Maybe someone here may have a good hint due to our problem?
    The Situation as it is:
    We are using ECL Viewer to display multipage TIFFs.
    The Process looks like following:
    The first step is to show a list of files situated in the user's personal folder(Network-Share).
    Then the user selects one of these Files through a mouse-click -> The File is displayed via ECL Viewer.
    Now the user selects the personal-Id where this file should be connected to and selects "SAVE".
    The Programm closes the Viewer and saves the Data in SAP Archiv.
    >> Everything works fine till here.<<
    But now the last processing-step would be to delete this file from the user-folder.
    (So next time the users starts it there will be only files he/she has to work on...)
    Here an error message is telling us that the file can not be deleted because there s some kind of file lock set...
    This problem only occurs only during processing multipage-Tiffs after paging down (swiching to page 2,3,4...) once at least.
    Any Idea what's the cause here  - or how to get through it?
    We are using a CL_GUI_CUSTOM_CONTAINER objekt as base -> hooked on that is a CL_GUI_ECL_VIEWERBOX and the TIFF itself is displayed wit an I_OI_DOCUMENT_VIEWER objekt.
    Maybe we get confused while destroying the "Connections" to the FIle oder something with Automation Queue Handling is not implemented right?
    Thanx for any idea, hints, or better practices
    Very kind Regards from Austria!
    Daniel

    Hi MaryAbraham,
    Since the issue regards ASP.NET and website deployment. I suggestion you post the question in the ASP.NET forums at
    http://forums.asp.net/. It is appropriate and more experts will assist you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem with Design View display

    Hi,
    Working happily in Design view using RH 10, and from one moment to the next the Design View display changed. The font display has changed to a truncated style and the word wrap has disappeared.
    I tried rebooting and then reinstalling and no luck in getting rid of the issue.
    The output is fine and as expected, so I am presuming that it isn't the CSS. Which I haven't edited for eons anyway so it really shouldn't be that anyway.
    This is happening on all my help projects - each with a different CSS - so it can't be the css unless RH did some sort of strange global change behind the scenes without my knowledge.
    Any thoughts on how to get Design View to display normally would be much appreaciated,
    Thanks,
    Tannis

    Hi there
    One possible suspect you may be unaware of is pressing and holding the Ctrl key as you rotate the wheel of a mouse. There may be a keyboard shortcut that would do this too.
    Cheers... Rick

  • Problems with design view after moving to new imac

    Moved CS4 Dreamweaver from my Mac Mini intel duo to a new i5 Imac last night: suddenly design view is not showing various CSS styles, especially certain links.
    For example, instead of this:
    HOME | ABOUT | CONTACT | HELP
    it will show this in design view:
    |||
    Meanwhile, in a browser live on the web, everything is fine.
    I did a fresh install of dreamweaver CS4 last night from original install disks to new i5 Imac.
    Help!

    Culprit is the classic MS Windows font ARIEL. I installed it one at a time from two different sources (a 1999 TT build and a 2001 TT build) and both immediately caused problems, particularly in Dreamweaver with vanishing text in design view for any fonts setting sassigned the "ariel, helvetica sans serif family").
    Since problem only is happening on the 2011 i5 Imac (but not on my old Mac Mini 1.6 or emac G4) I will guess the dilemma resides with fontbook or something peculiar to font management on the iMac.
    Removing font of course solved all problems.

  • Why can't I use design view?

    I recently loaded CS5 to manage a site developed witha previous version. The site includes php pages with a "require" function for a Fireworks-developed navigation bar. While I can do anything I want in code view, the design view will show only the navigation bar and no other design. All of the material is in the code and puts properly. How can I make the design view functional again?

    I don't think I have it set up at all. When I go to Live View and try to connect, I get a message saying:
    Not Found
    The requested URL /about-us.php was not found on this server.
    I have the remote server set up fine - I can put and get files with no problem. However, I'm not sure how to set up the testing server.
    Thank you for your help.

  • OCX problems Using Designer 2.1 to Generate VB 5.0/6.0

    We are using Designer 2.1 to Generate VB 5.0 which we are
    actually bringing into and opening up in VB 6.0. We are running
    into problems with the controls gauge32.ocx and threed32.ocx. We
    retrieved copies of the ocxs, but we can't put them on our NT
    machines.
    I've seen documentation that indicates we need Oracle Objects
    also, is this true?
    Any information on any issue relating to VB 5.0/6.0 generation
    out of Designer would be appreciated!
    null

    Hi (Miss?) Donna,
    You need to install Oracle OLE 2 Object which is accompanied with
    Oracle Server for Win NT or Oracle Developer disks. In addition,
    to run apps generated as VB 5/6 apps by Designer/2000 , you need
    some legacy OCXs, which are placed on controls directory of VB
    5/6 installation directory.
    WM_HOPETHISHELP
    =====
    Donna Pinkerton (guest) wrote:
    : We are using Designer 2.1 to Generate VB 5.0 which we are
    : actually bringing into and opening up in VB 6.0. We are
    running
    : into problems with the controls gauge32.ocx and threed32.ocx.
    We
    : retrieved copies of the ocxs, but we can't put them on our NT
    : machines.
    : I've seen documentation that indicates we need Oracle Objects
    : also, is this true?
    : Any information on any issue relating to VB 5.0/6.0 generation
    : out of Designer would be appreciated!
    null

  • Problem with design view (DW8)

    Page display correctly in IE7 browser but not in design view.
    Right sidebar is appearing in the middle of the page. Page is using
    CSS and the div is using float left.
    Can someone tell me what the possible issues could be?
    Thanks

    jdrhost wrote:
    > Page display correctly in IE7 browser but not in design
    view. Right sidebar is
    > appearing in the middle of the page. Page is using CSS
    and the div is using
    > float left.
    Design view is not WYSYWYG. It's very good, but not perfect.
    Preview in
    browser is the only accurate check of how a design will be
    rendered.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • DW 11.0 Build 4993 - why can't I use Design view with an HTML file?

    Subject line basically says it all: I started a new HTML file, but I can't switch to design view.  Anyone have any idea why?  Thanks!

    Which operating system? Mac or PC?
    Can you post a set of reproducible steps so we can follow what you're doing?

  • Problem on designer view

    Hi All,
    I don't know why i can't display the designer view. Anybody can help me?
    or if you want more information, i can tell you.
    Regards,
    Luke

    Hi Luke,
    Designe veiw means you are not getting layout??
    First cehck this.. Goto the layout tab of the view. u will see an option of '.Show/Hide Layout Preview'.
    Still not getting, your sys not configured properly.. Check FQDN
    http://help.sap.com/SAPHELP_NW04S/helpdata/en/67/be9442572e1231e10000000a1550b0/content.htm
    and Goto SICF transaction activate relevant services..
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/46/d28dfa34bb12bee10000000a1553f7/content.htm
    Also cehck HOST name..
    view layout is not displaying, ( The page cannot be displayed)
    Cheers,
    Kris.

  • Problems using Restore View

    Okay,
    I have been trying to use Adobe Reader to read many different PDF files on many different computers. I want to restore to the last view that I was looking at.
    I followed the instructions and went to "Edit...Preferences...Documents...(Open Settings) Restore last view setting when reopening documents" and enabled this.
    However, whenever I reopen the document, it continually returns to the first page of the document.
    I read somewhere that when files are saved it can cause it to restore to the first page, but I am only using the same document for which I (to the best of my knowledge) am not making and saving changes to. I even went so far as to disabled all the Save options, but still this did not solve the problem.
    I am using Adobe Reader version 9 on Windows XP.
    Does anyone know how to solve this problem?
    Eric

    Nils, this forum is dedicated to general topics related to Business Objects solutions. Your query appear to be related to .NET development. Please post this query to the .NET Development - Crystal Reports  forum:
    SAP Crystal Reports, version for Visual Studio
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all BOE queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Ludek

  • Problem in Designing view

    Hai,
      I am Designing a form using webdynpro. In that i need to put two input fields in side a rectangualr image. How is it possible in webdynpro.
    Please help me asap.
    Regards

    Hi,
       Use gridLayout beacause it divides the window into coloumns .......so even though the text size is manipulated it will not affect the allignment....
    for the transparent containeer set the colcount to the max no of columns u want .......and add component to it if a control needs to acquire more columns then set the colcount property of control to the no of columns u want to acquire.....
    regards,
    Yash

  • Design view problem after upgrade to CS4

    I just upgraded from DW 8 to CS4. When I open up (using design view) any page created in DW 8, only the top portion is shown in CS4. All pages in my website seem to have the same problem being displayed in CS4 using design view.
    Does anyone know what the problem could be? I would greatly appreciate some help! I am attaching a screen shot from CS4. A page example is available here: http://www.studentguideusa.com/Sports.php
    Thanks!

    That page uses includes, and has more than one head, body, etc.
    Include files should contain only the code for that section of the page, so that when everything is put together you end up with one DOCTYPE, one pair of <html> tags, one <head>, and one <body>.
    Earlier versions of Dreamweaver ignored the invalid code. Dreamweaver CS4 does not.

Maybe you are looking for

  • Support Package Manager 6.20/0015

    I installed an IDES 4.7x200 SR1 System. In the TA SPAM the Support manager seems to be totally outdated (Version 15). In the ServiceWeb of SAP there are only Packages from 17 to 29 available (even with some steps missing). Can I install just the late

  • Can Curved Verticals Be Corrected Reasonably Easily In FCE /FCP ?

    A friend has shot some holiday footage using a screw-on wide-angle lens. This of course has resulted in distortion causing vertical lines near the edge of the frame to bend. Is there a reasonably simple way of correcting this using FCE or FCP ? Someb

  • CONTAINS clause and keywords

    We have an application which uses context indexes, and a user ran the following query today which resulted in an error: select * from paghtrd a where CONTAINS(A.NAME, 'ALL ABOUT AUTOS') > 0; SQL Error: ORA-29902: error in executing ODCIIndexStart() r

  • Fetching lazy attribute problem

    Hi all. I have a simple question. How can i get an unfetched value of an entity attribute marked in my jpa as +@Basic (fetch = FetchType.LAZY)+ +@Column(name="DEPARTMENT_NAME", nullable = false, length = 30)+ private String departmentName; when i try

  • Bash: Use command output as argument for next command in pipe

    I'm trying to do this: tail -f /var/logfile | grep -C 0 text | mail -s "OUTPUT OF GREP" [email protected] How can I do this?