For all things Dreamweaver.
Recently active
All right, I know I'm gonna sound crazy, but this is what is actually happening in Dreamweaver 21.3 on my Mac using Monterey OS X. I will for example, change the font size on a heading, save it, and two days later dream Weaver will have reverted back to the original size without my having done anything or changed any code.Another example, page format, changing margins, disappearing without my having done anything. Also, if anyone happens to know anything about light box, suddenly, my images are not centered in the view window, although they have been for days and days. Thank you for any help.
Can someone let me know where I screwed up here? http://angelscancleaning.com/booking-page.html <?php $emailSubject = 'Bin Washing';$webMaster = 'service@angelsjunkremoval.com'; $user_name = $_POST['name'];$user_address = $_POST['address'];$user_city = $_POST['city'];$user_email = $_POST['email'];$user_phone = $_POST['phone']$user_frequency = $_POST['frequency'];$user_bins = $_POST['bins'];$user_notes = $_POST['notes']; $body = <<<EOD<br><hr><br>Name: $name <br>Address: $address <br>City: $city <br>Email: $email <br>Phone: $phone <br>Frequency: $frequency <br>Bins: $bins <br>Notes: $notes <br>EOD; $headers = "From: $email\r\n";$headers .= "Content-type: text/html\r\n";$success = mail($webMaster, $emailSubject, $body, $headers); /* Results rendered as HTML */ $theResults = <<<EOD<html><head><title>You're Booked</title></head><bod
I have just noticed that roll over images and clicking said images does not work now. When I click the image to open another page, you go straight to the top of the page. It was fine before I updated to PHP8.0.Could someone please help with this. I have copied the and pasted a typical page below.Thanks in advance! <!DOCTYPE HTML><html lang="en"><head><meta name="robots" content="INDEX,FOLLOW"><meta name="robots" content="noimageindex"><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="description" content="Winning Moves is currently the biggest Trumps producer and have a rich range of popular titles ranging from TV and cinema to popular events such as the 2012 Olympics."><meta name="keywords" content="Top Trumps, Winning Moves, STT, berhooz araz, Jacqueline Wilson, Tracy Beaker, Star Wars, Bonecrusher, Bart Simpson, Batista, Arthur Weasley"> <title>Super Top Trumps
No puedo subir mi pagina web , por que tengo archivos en servidor remoto de paginas viejas
When I connect DW to the remote server for one of my domains, the list which is shown under 'remote server' is not the files I expect to find.'Remote server'-list shows the following files:.oldroot ; customers ; dev ; etc ; lib ; lib64 ; proc : root-bootstrap ; run ; usr ; ver… and not the local files as Images Pages Styles Templates etc When I sign in to File Manager at one.com, all the files which I expect stays there. When I run the synchronize the response is ‘No synchronization is necessary’ Please help. I am stuck until this problem is solved.
I do a weekly econnerence email campaign and use the previous weeks email to update each week. I will often copy and paste an image from an older email, replacing an existing image. When I do this, it adds in the new images source link and desitination link, but keeps the old images links. Email seems to finction fine, but probably not a great idea to have the extra code that serves no purpose and for all I know may effect the enails functionality. I therefore go into the code and remove the old/extra code. Is there a way I can do what I'm doing (copy/paste) and have the new code REPLACING the previous/old images code? TIA.
Hi, Is there an alternative to Notepad++ for Mac? Hosun
Do you see the white lines under the brown ones? That's my problem. I think it's about border. Can you guys help me? I changed the value of border to 0 already But it still has white lines. If you want to ask more questions, you can tell me.
This has been going on all day. So if I run my old version of DW 5.5 I can connect to my ftp without any problems. I an update my files, edit etc with no issues at all. When I run this current version "THAT I'M PAYING A MONTHLY SUBSCRITPTION FOR". Nothing updates. What is the cause? It's not my host as I've checked that multiple times and they are fully up and operational. Again, run the old version of the software, connect via ftp and I can edit and update any file in my directories. I connect with the "online service" and can't update or edit anything.
Interface bug.I have a MacBook Pro (intel) and 2 monitors. In DreamWeaver the Color select tool under CSS Designer does not respond when DW is on the monitors and not on the MacBook it self. Why ?
I recently inherited a puter with a DW version and was surprised to learn that the Insert button did not provide a button for Video or Media that an older version I´ve used in another puter did. I tend to add MP-4´s most of the time; how do I import an MP-4 to my DW file?
I went to the home page for Creative Cloud and I could not find Dreamweaver anywhere... I had to dig deep to find it and I'm wondering if Adobe is about to abandon another of it's Macromedia purchases?? Don't want to pay for a year of something that is EOL. Also I notice that the CC installer is not updated for MacOS Catalina and will not work in it.
I checked my navbar on PC desktop, MacBook, iPhone, iPad. The hamburger dropdown menu worked fine. I checked android and it did not work. The menu simply disappears if I touch the one drop-down item. If I hold it down for a few seconds it sort of works, but that isn’t ideal. Is there a media query that could isolate the android? I could then simplify the menu, specifically for that device. The media queries I know of only relate to screen width, which is too general. Test page: www(dot)atnuke(dot)com/nav(dot)html This is the relevant code with media query: .navbar {display:flex;position: fixed;overflow: visible;background-color: #27254F;top: 0;min-height: 70px;justify-content: space-between;align-items: center;padding: 0 24px;width: 100%;border-bottom: 2px solid #BEDEFA;}.nav-menu {display:flex;justify-content: space-between;align-items: center;gap: 60px;} .nav-menu li:hover>.sub-menu{top: 4rem;opacity: 1;visibility:
When Bootstrap first released it came with Glyphicons (SVG icons). Later, Glyphicons were removed. Icons have made a comeback. These are open source and free to use either with or without Bootstrap. https://icons.getbootstrap.com/ Typical usage: Add this to your <head> tag. <!--Bootstrap Icons--> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css"> Standard syntax for an alarm clock icon: <i class="bi-alarm"></i> Styled with inline CSS: <i class="bi-alarm" style="font-size: 2rem; color: cornflowerblue;"></i> Have fun!
I came up with a template design that I like. Everything works well with no errors, except for one detail. The drop down menu in desktop mode leaves a residue of text for a second or so, before fading off. Here is the code that affects that area: .nav-menu li:hover>.sub-menu{ top: 4rem; opacity: 1; visibility: visible; } .sub-menu li:hover>.sub-menu{ top: 0rem; left: 8rem; } At first I tried using a no hover class after the hover class: .nav-menu li:not(:hover)> .sub-menu{ display:none; } That fixed the problem in mobile view but not desktop view. It eliminated the residue but rendered the sub menu unusable, because it disappeared too fast. I also tried experimenting with transition properties. That made it worse. Is there any easy fix? Here is the page: https://atnuke.com/idx-1.html [Link edited by moderator for clarity.] Thanks again.
I've got a problem with my bootstrap navbar: when I tets it in the development mode in Google chrome, and expand the togge-icon, there is no colored backgrond in the mobile-phone example, but tabelt-formats work fine.Here are two images showing the difference: I don't understand how this can happen, since I didn't have that problem with a previous design. Can anyone take a look at my stylesheet and maby tell me what the solution is? Thanks.
I am uploading files that are a dyptch with a photographic image on one side and text on the other. The file looks great in Photoshop. It looks great everywhere else at all different resolutions, except when uploaded to the website, and then the text looks a little fuzzy. I have been trying to research this, but haven't come to any great solutions. I did try saving the file as a png. file and that helped a teeny bit. Anyone else have any thoughts on why this happens and what to do about it? Thank you for any insights you might have.
I have a legacy Macromedia Dreamweaver MX 2004 bundle that I paid a lot of money for back in 2004. My old PC died and I'm trying to install Dreamweaver and it installs but then stalls because it's trying to reach Macromedia to verify the license code. The software may be 20 years old but it works just fine. Does anyone know how to get the license key to "take"? I pinged Adobe support and they said to post my issue here. Thank you
I get this message and however I did use a Ohmy template to create all the pages in my site, I never before updating to CC217 had this message come up and disallow me from updating my page.How can I get around this or disable the lock?Message reads: Making this change would require changing code that is locked by a template or a translator. The Change will be discarded
So I have a web page I made in the previous version of Dreamweaver in 2021. I used an Adobe Edge font, which stopped showing up in July. I've downloaded the latest version of Dreamweaver. I've followed the instructions on the Add fonts to your website page, and pasted the code into my Head section. The font does not show, it's just reverting to Times New Roman. A little help...? Here's a screen shot of the current Head section. Thank you.
Hello Community! I don't do a lot of web design, and the last time I used Dreamweaver was 2019 - apparently it has changed a bit. I'm updating a site for a friend. Originally, I made one jpeg in Photoshop with all the elements of the web page on it. In 2019, I was able to "map" my navigational buttons from that single jpeg. Worked great for me.In re-doing the site, I cannot find a "map" function to do that, so I've been racking my brain, trying to use tables, to make my side-by-side navs (on the left) that link to one large image on the right. The first image was from my 2019 site, where everything was on one jpeg and the navs were mapped to create the links to connect the web pages. The 2nd image is what I currently have. I made a 2-column table, with the navs on the left.... but whenever I try to add the large image on the right side of the table, it either goes on top of the navs, or splits the navs. Ultimately, I would like
Railway is a new kid on the block. This is a great alternative for those that want to move away from Heroku. I have a video explaining how to deploy the website. I have used a different IDE for this, but it should also be do-able in Dreamweaver. https://youtu.be/kaQqH9GIYh8
I want to link to my old site, twinbeaksaviary.com. This site was moved several times, resulting in a plethora of errors, some significant. I have corrected most so far, but I haven't been able to figure out why, or how, to get it to display as it did in the past. All content displaying side by side, over the background. Pinching to zoom. I’ve been researching and attempting to fix for days and need help, please. tia
Need a vector towards the right starting point - I have no idea! I am tasked to map and populate a route with various land marks along the way, zoomable and pannable, with icons for landmarks which show a popup when they are rolled over. Simple but search terms aren't really turning anything up. Any experience or pointers?
We recently went through a thorough site inspection to satisfy new credit card compliance guidelines. I thought I would share some of the things we were required to add to our site in order to pass inspection. 1. Privacy Policy revised to include data tracking by 3rd party sites like Google Analytics and social media to which the site may be linked. 2. Refund & Return Policy. 3. Complaint Resolution Policy & Timeline. If there's a dispute, who settles it and how long does the process take, etc...? 4. Complaint submission form and/or contact details (name, address, telephone). This is on top of existing requirements about record keeping, data protection & encryption to keep user data safe & secure. If your site conducts business in the European Union, additional regional requirements may apply. Happy coding!
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.