For all things Dreamweaver.
Recently active
Hi Guys. Quick question is it possible for a page element to have multiple classes assigned to it? My page has a left and right sidebar. Both currently have a class assigned to them called bodyStyle. It handles the border and color aspects of the body area of the page. I want to create a class that is specific for both sidebars that adds additional things that would be used by both sidebars but not the main content area.. I could use the IDs but that would create repetition. A class is the better cloice but I am unsure about having multiple classes.
Hi Guys, I've been messing with this menu sample for a while now. It works like a champ in a single column layout but will not "page" in any multi column layout. Flex no flex, it doesn't matter. Would someone please explain why? https://codepen.io/ejsado/pen/gPVgVv
Having 2 separate issues with website compatibility. The site http://basso56.com is working perfectly in Safari. In Chrome the homepage plugin does not run. In Firefox the fonts do not load. I'm hoping someone is familiar with these issues as I'm not a pro, just helping a friend out. Thank you in advance!
I have a page that I'm working on with a minor but frustrating issue - my JS to close a modal when you click on the modal container isn't working on Safari on iOS, and only on Safari on iOS. Works on Chrome and on all desktop browsers, including Safari, even when setting the preview to the device in my hand where it isn't working! I'm sure I'll get it working, but not being able to test on my phone immediately after making a change is what's frustrating. I really miss DW's 'preview on device' option as I could be debugging and testing simultaneously, but now I have to launch the site on my github pages, wait for it to go live, check it, and try again.Does anyone know if this functionality will be returning, or if there's some way of getting live / real time preview on a device without the middle steps?
Could someone give me a clue please? You'd think when the instructions say to open this, there would be some documentation somewhere on how to do so. I've searched the menus and help and the forum to no avail.
I made some nice CSS updates on my external file. They work nicely on the "child" pages, but completey failed on the dwt template file. How is that even possible? How do I get my dwt file to match what already works on the child pages? I know some will tell me to use php server side. I don't know php yet. I need to get the dwt working, for now. Thanks.
Hello. I am able to write my own css now but sometimes I like to use the CSS Designer. Used it for years. Now when I choose my source - styles.css - and then click the plus sign to create a selector I try typing in my own selector name for instance .something, hit enter and it disappears from the designer so I am unable to use the properties panel to style the selector. It does create .something in the styles.css file though. I am just wanting to know why it doesn't work anymore. Could it I'm thinking that it might be because of bootstrap although I created a page in plain html to test that theory and the selector still disappears from the designer. Any ideas why it doesn't work?
When Live View is displayed to the left, the lower toolbar should also be switched.ライブビューを左に表示させたら、下部ツールバーも入れ替わってほしい。 Even if Live View is displayed on the left, the lower tag selector and status bar remain the same, so the upper and lower toolbars are displayed differently.ライブビューを左に表示させても、下部タグセレクターとステータスバーは変わらないため、上部と下部で表示が入違ってしまう。 Is it just me?と感じるのは自分だけ?
I used bootstrap to create a navbar. It works well enough, but the dropdown link is lightned to the point where it is hard to read. The other links are solid white, but the dropdown link is about 50% transparent. I tried using the .show class to change it to solid white, but I was unsucessful. Please advise on how to update the code. Thanks.
Hello professionals, Until recently I had a client making her own edits to the site I created through CushyCMS. It worked for both her and I for years. Has something changed? I created a new CushyCMS account under a different login/password. Seems either I don't understand the ftp details or CushyCMS no longer works as I keep getting the response: "FTP Error. The page is temporarily unavailable. There may be some network issues contacting the server the page is hosted on. Please try again in a few minutes." Does it have something to do with the Server field? In the instructions it says: "Custom FTP ports can be specified by using the following format for the Server field: Custom FTP ports can be specified by using the following format for the Server field: ftp://server.com:55" What does :55 refer to? Am I assuming incorrectly that the server name would be the same as site URL? I was just using one of my testing URLs in trying to
Dreamweaver 2021 on Mac is not displaying Modified Date even when selected. I have seelected all of the options including modified by and it wont show or filter. Its just a blank space. It works fine on Remeote View but not on Local View.
Hello, I'd like to add a comments section to a webpage. The sort of thing I'd like can be seen at the bottom of this page.https://viewcameraaustralia.org/2022/06/05/view-camera-australia-online-exhibition-june-2022/ Is there anything in Dreamweaver that can do this or do I need something else?ThanksMark
Hello guys, about 7 years ago I designed a Website with Adobe Muse. The owner contacts me now and then for a few simple changes, which I usually did with the Inbrowser-Editor from Muse. Since Adobe has cancelled it, I tried to solve everything with Dreamweaver (with as well as no coding skills). Last thing the owner wanted me to add was an event calender. I solved this with an iframe: https://www.schwarzwaldverein-oehningen.de/index.html#news Now the problems:1. Since i embedded the iframe, the green bars on the left and right side of the page moved downwards, before that they were "connected" to the slide show at the top of the page. I think this happenend because the page is longer now but bars have a fixed length.2. At the bottom of the page you see the arrow with "Impressum & Datenschutz", this was located in the white area above the horizontal green bar, now it moved down to the green bar. This is bad because the font color is also green so it's hardly legibly.&
Anyone got an ideas? I have a list of dogs as separate variables, coming from a badly formated API. Should have put the dogs in an array! dog1 = "Poodle";dog2 = "Greyhound";dog3 = "Beagle";dog4 = "Border Terrier";dog5 = "Blood Hound";dog6 = "West Highland Terrier";dog7 = "Alsatian";dog8 = "Scooby Doo";etc... Anyway I want to 'loop' through the dogs: for(let i = 0; i < 20; i++) {listDogs.innerHTML += `${dog[i]}`;} Obviously the above doesnt work as its not valid code but you get the idea. I can get this working using 'eval' but am reluctant to use it because of poor write ups. for(let i = 0; i < 20; i++) {let dogList = eval(`dog${i}`);listDogs.innerHTML += `<li>${dogList}</li>`} or I can push to an array, which I can then loop through, but is kind of long-winded and not very elegant, but more secure: let dogList = [];dogList.push(dog1);dogList.push(dog2);dogList.push(dog3);dogList.push(dog4);dogList.push(dog5);dogList.
Hi Guys, I'm curious how you would implement dynamic page content using Flex. I found a sample that I thought was pretty interesting and wanted to try using it in my template but the sample doesn't use flex so I'm guessubg that it would have to be modified. This is the original HTML and CSS code. What aspects of it would have to be modified to work with Flex? Thanks In Advance.<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>CSS Tabs Revisited</title> <link rel="stylesheet" href="./style.css"> </head> <body> <!-- partial:index.partial.html --> <main> <h1>CSS Tabs Revisited</h1> <input id="menuitemone" type="radio" name="menutabs" checked> <input id="menuitemtwo" type="radio" name="menutabs"> <input id="menuitemthree" type="radio" name="menutabs"> <input id="menuitemfour" type="radio" name="menutabs"> <div id="menuta
In my source, I have the following (as one of thousandss of examples): <cfinclude template="/error.cfm"> Within DW, if I right click on that line in my code I get an option in the context menu for Open "/error.cfm" On some sites, this consistently does nothing at all, and on others it consistently works as expected. The sites it doesn't work on used to also work, but no longer do. The issue is purely opening linked files from the context menu, all else is fine. I have had Adobe support controlling my PC for an hour and were unable to suggest a cause or even fully understand the problem. Anyone else had issues with this context menu?DW 21.2 (15523 Build)Windows 11 x64 (also on Windows 10 x64)
Hello, for a couple of weeks now I have been working on a Wordpress site using an Elementor theme. My team has triedOptimizing and reducing all image sizes Cleared any extra CSS, Java, HTML script Cleared cache files I’d really appreciate it if someone would share some guidance on how to solve the issue of slow loading time. (Almost 8 seconds)
Does anyone has any advice on how to create links to fragment identifiers? I was using Dreamweaver Creative Suite which worked fine for this. In fact, it was very good. Now, before someone says "named anchors are deprecated" let me say yes, I know this. But fragment identifiers are perfectly valid, non-deprecated HTML. In fact, you can still use anchors in exactly the same method with one caveat; that you don't use a "name" attribute" and instead use the ID attribute. Either way, in DW Creative Suite I could give a DIV, P or A element and ID attribute, then to create the link to it in Dreamweaver, you could drag the "Point to file" target tool in Properties to the element in the Design content view, and it would add the "#fragment-identifier" URL to the link box on the selected text. This was, and still is, perfectly valid HTML that IS NOT DEPRECATED. How do you create a link to a fragment identifier in Dreamweaver now that Adobe have broken the Point to File and linking. Ad
Au lancement de Dreamweaver, voic le message d'erreur :Impossible de charger les ressources traduits. Pour corriger ce problème, veuillez réinstaller l’application.Je paie un abonement et aucune réponse
I have a project where several pages are displayed in an iframe. All these pages are HTML and I don't have a problem creating links to display them in the same iframe. However, the project includes videos, which I don't know how to create a link (like I did for the HTML pages) to display them in the same iframe. Here is the structure of my list:<ul><li> <a href=""> page 1</a> </li><li> <a href=""> page 2</a> </li><li> <a href=""> page 3</a> </li></ul> Can I use a similar approach to link videos? Sincerely,
I happen to be out of town (away from my purchased software disks) and my program won't open. The error message says it needs the designer.xml file. Is that a file I can get and upload to correct this. Thanks for any help you all can assist me with,Betsy
We found that Dreamweaver freezes for several minutes if we include this line of code in a PHP page:<script src="./jsk/kendo.all.min.js"></script>When we try to use "Kendo UI for PHP & Jquery", Dreamweaver detects that the ".jsk" folder has a lot of ".js" javascript files (about 95Mb!) and starts parsing them all, loses minutes thinking about the content of this page when we just want to edit the content of our PHP page!Therefore, Dreamweaver is interpreting the javascript files that are referenced in a PHP page BEFORE opening the page, completely freezing Dreamweaver for several minutes.This situation is desperate!! If we uninstall Dreamweaver and reinstall it again, it's fine, but after a few days, everything freezes again!!!We think this is a bug in Dreamweaver.Does anyone know anything about this?How could we disable the "preprocessing" of this folder and these Javascript files?
I reinstalled my Mac os and Adobe applications, everything worked in the past and continues to work now. However I am unable provide working ftp credentials. The credentials, user name and password, work with the native Mac FTP client. Entering the same credentials does not work, resulting in "An FTP error occurred - cannot make connection to host. Dreamweaver cannot connect to host...: Curiously I am able to restore the credentials using an old .ste file and the ftp function works for the current session. However upon starting Dreamweaver the next day, the credentials do not work and I am unable to enter them manually. I tried deleting the plist but not sure I found the right one. I tried comparing the site parameters with the restored .ste parameters and found no difference, and yet it still does not work. I reinstalled the old version of Java. I asked my wife to take a look and she found no differences. I am sure
I've just started using PDO, I'm using dreamweaver 2021 and I'm getting this error, I tried many things, but I couldn't figure out what I did, I would appreciate if you could help.
What about for a Mac running OS 10.12.6 with Dreamweaver v 19.2.1? Mine seems to be related to a Libraries sync error that I can't clear.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.