For all things Dreamweaver.
Recently active
Hello, I would like to have a horizontal menu at the top of the screen with 6 menus (ex ;: tab) then as soon as you click on each menu: be able to display the sub-menus below. Completely new to DW, I don't know if I have to do it by coding or if there is a + simple method (via options of DW or in WYSIWYG Thank you.
Hello, 😉 Until now, I had created sites for me (only local) document management, dvdtheque, ... with HTML, PHP, javascript, ... But I would like to redesign an online site (a simple showcase site, mainly text) for an association and use a tool like DW to redo the site. I would like to use DW (in + it will give me the opportunity to learn it ;-)) but I would like to do as much as possible with the graphical interface (WYSIWYG mode) therefore do not enter the HTML, CSS, javascript, ... code. (Eg take inspiration from the site bonsaiclubsudaisne.fr [link removed by moderator]) I would like to create drop-down menus at the top of the screen (like on most sites), then insert a form, a few mages, tables, ...) so all in WYSIWYG. (and therefore generation of the code behind) Is it really possible? Or do I necessarily have to use code at some point? : - (( I just thought that the interest of this kind of software was to do everything graphically. If there is no solution, u
Where is the "Structure Insert Panel in Dreamweaver. I want to insert a fluid grid div so that it is not static on a row and can me moved around and I don't get that option when I insert a regurlar div. CS6 used to have a insert fluidgriddiv but I don't see anything like that in 2021. I'm thinking bootstrap is the deal but I don't know anything about bootstrap so please advise.
Hey I have developed a website in Dreamweaver in a roofing industry. A more relavent issue which I am faceing is I can don't et where I should my schema code in the file section. Looknig forward for the solution. Here is my websitre link: restonroof.com
Hi, I just backed up an old Macbook Pro to time machine. Then sold the computer for an M1 Mac Mini. Unfortunately, I didn't export my Dreamweaver site settings on the old computer. Is there a way for me to retreave them to the new computer by going into my time machine backup? Any help would be greatly appreciated!
How i can convet my existing website from dreamweaver to different design. what are the steps that i should take care of and how much time it would take to convert my simple squirrel site to other design without losing speed.
I tried to write the script tag console.log ("Hello World") in DreamWeaver CC 2021, but didn't work. Appeared the follow message: ERROR: Unexpected console statement. [no-console]. Why is this happened?
Hi, Since stopping my CC Dreamweaver subscription I am unable to open CS6 version, it is listed in my products tab as activated 2015 yet it now says invalid serial number when I try to reinstall it.
I followed a YouTube video to learn how to make some cool Social Media Buttons. I have tried copy & pasting his code, but they do not display correctly. They have a hover feature but only the facebook one is showing the icon correctly and the colors. Here are the sections of my code from the header and body. <title>Social Media Icons | CodingMaker</title><style>@1552174 url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');*{margin: 0;padding: 0;box-sizing: border-box;font-family: 'Poppins', sans-serif;}html,body{display: grid;height: 100%;width: 100%;place-items: center;background: linear-gradient(315deg, #ffffff 0%, #d7e1ec 74%);}.wrapper .button{display: inline-block;height: 45px;width: 45px;float: left;margin: 0 5px;overflow: hidden;background: #fff;border-radius: 50px;cursor: pointer;box-shadow: 0px 10px 10px rgba(0,0,0,0.1);transition: all 0.3s ease-out;}.wrapper .button:hover{width: 200px;}.wrapper .button
DW 2021 doesn't remember Split > Code-Design state of documents. After reopening documents, only code is shown. I have to manually re-select Split > Code-Design for each doc again. This didn't happen in pre-2021 versions. macOS 11.4DW 21.1
It would be great to have the ability to save all open files to a specific group for later use. I am not requesting to copy or save the file content but save the file paths. For example, I am working on a 4th of July sale for my website and I have to modify 7 files. When the sale is over I have to revert those changes in all 7 files. Having the saved group will provide the ability to open all files with a single click. This may sound useless to some but think about it. If you are a developer and working on several projects and constantly having to switch between them, wouldn't it be great to do it with a single click? C'mon Chrome did it with tabs.
Sorry, it's not a Dreamweaver Post... 🙂 have any one ever worked with the LinkedIn API ? https://docs.microsoft.com/en-us/linkedin/shared/api-guide/concepts apparently it doesn't seem possible to extract POSTs. But my English being quite limited, I may have misread it. Have any of you already extracted the LinkedIn posts ?
This is my first post on these forums, so bare with me!I created and designed a prototype for an app idea that I had. Is there any way to move the layers from my prototype from Adobe XD over to Dreamweaver to code it into the app I want it to be?Also, If anyone has an idea on who to get in touch with to form a team and work on the coding/programming aspect of my app. It would be greatly appreciated.-TT
Huge problem on Dreamweaver CC 2021 on macOS:Cannot declare anything as rootsite.“The local root folder, project, does not exist. Please select a new local root folder by clicking in the Manage Sites button.”Then I declare project as root folder in “Manage Sites”. When I open again, I get the same message.File vault status: is not used.
I was told that if I had Dreamweaver it would open files ending in .MJS, I have the 7 day trial but it won't open them. Help thanks Patricia[Moderator Note: Removed all-caps to make post more readable]
after I had another mother board installed on my pc and I transferred some local files to remote via DW in my creative suite 5 design premium program installed in 2010, then once I brought my website up on my browser to see the changes, they were not there.
Good Day Guys, Hope you all doing Great! I am running a website [link removed by moderator]. This website is currently build with Wordpress. I just want to know that, if i make a new website design using Adobe Dreamweaver, can we convert it into Wordpress later?Looking for your kind suggestions and helpful answers. Regards
Why do the h1 tags all inherit the drop shadow when I only want the h1 tag with the drop shadow? <!DOCTYPE html> <html> <head> <style> /* different fonts and classes */ @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); h1.custom { color: green; font-size: 300%; } h1.center { color: orange; font-size: 200%; text-align: center; } h1 { margin: 20px; padding: 0px; color: red; text-shadow: 2px 2px 4px #000000; } p { color: red; font-family: 'Open Sans', sans-serif; font-size: 14pt; line-height: 1.3em; text-align: left; margin: 20px; padding-top: 5px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; } p.center { text-align: center; color: red; font-size: 120%; } p.large { font-size: 200%; color: blue; text-align: center; } </style> </head> <body> <h1 class="custom">This H1 is custom size</h1> <h1 class="center">This H1 heading is centered</h1&
I downloaded a webpage locally and wanted to use it to build a website. Everything worked OK, but when I used developer tools in Firefox and Chrome to simulate the mobile format, the dropdown menu via the hamburger icon did nothing. On my actual phone, the 'live' site's mobile version worked perfectly. I've been informed it may be a 'server-side' Javascript issue. I haven't used Dreamweaver in years but have borrowed my colleagues laptop in the hope it can shed some light on how to fix things! Can Dreamweaver enable me to 'extract' server-side functionality? The site in question ishttps://www.icaew.com/groups-and-networks/local-groups-and-societies/london-ds Not a particularly unique/high-end site, so I don't understand it's complexity! Hope someone can help. Thanks.
Is there an update in the pipeline to deal with the new authentication requirement for GitHub? Quote GitHub "Beginning August 13, 2021, we will no longer accept account passwords when authenticating Git operations and will require the use of token-based authentication, such as a personal access token (for developers) or an OAuth or GitHub App installation token (for integrators) for all authenticated Git operations on GitHub.com. You may also continue using SSH keys where you prefer." This will create massive issues for my classroom. BrBarry
Is there an issue with putting dependent srcset images to servers? I am learning how to post to local and remote servers and have posted separately on that particular struggle. Meanwhile, I have managed to a few puts which have transferred the main and dependent files to another server, but in every case, some scrcset images are being left behind. Here is the speific code: <picture> <source media="(max-width: 600px)" srcset="images/banner-sunset-text-4x6.jpg" alt="Narrow" /> <source media="(max-width: 1100px)" srcset="images/banner-sunset-text-16x9.jpg" alt="Medium" /> <img src="images/banner-sunset-text-fullsize.jpg" alt="Wide" /> </picture> When I put to a server only the final src image is copied over - the srcset images are NOT transferred. If I copy the files over man
I am paying for a full Adobe plan. But lately my operating system does not allow me to load more applications like Dreamweaver. What can I do, maybe there is no previous version with Mac os Sierra 10.12.6 Can someone help me. Thank you!!!
I have used Adobe Muse for many years and built a site that has over 100 pages. I need to move my site over to Dreamweaver. Please do not scold me because I have procastinated. I have successfully imported and opened my site in Dreamweaver. My first question is does Dreamweaver have an overall view of the site like Muse did? Like the acreen shot below?
I have been using Muse for years and I loved that WYSIWYG interface. I have created a site that has over 100 page and is complexed. I have successfully imported the site into Dreamweaver but I do not know the first thing about HTML and CSS. I do not know how to add, update and make changes to my site in Dreamweaver. The site is already built I just need to understand how to make changes and overall how to maintain that site. I am looking for resources. If you have any resources that you can share I would be very grateful. I am lost!
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.