• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

dreamweaver does not execute commands when I use the interface

Explorer ,
Nov 22, 2020 Nov 22, 2020

Copy link to clipboard

Copied

Hi everyone! I am trying to switch to Dreamweaver from Muse. I was trying to center an H1 on the top of the screen and a footer to the bottom of the screen but it did not work using the interface. Once I found the codes on the web I checked to see if they were being applied in the CSS and I noticed that they were not there. So I manually entered them and both worked perfectly. Can anyone tell me why Dreamweaver is not writing the codes when I use the interface? Thank you, Umberto.

Views

338

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Nov 24, 2020 Nov 24, 2020

Open index.css file and edit code manually. 

Change background-color to #EAEAEA.

Save changes (Ctrl/Cmd + S). 

Upload file to server and refresh your browser.

 

It should look like this:

image.png

 

The address box is getting it's red background-color another stylesheet called master_a-master.css file.

#u80-8 {
background-color: #ED1C24;

}

 

I wasn't exagerating when I said Muse code is horrible.

 

Votes

Translate

Translate
Community Expert ,
Nov 23, 2020 Nov 23, 2020

Copy link to clipboard

Copied

Sorry, I miss understand your UI question, but if you need using center item on code, the best way to learn is to use online tool such

http://howtocenterincss.com/

https://www.codegrepper.com/code-examples/html/div+center+css

https://css-tricks.com/centering-css-complete-guide/

 

does this help you ?

have a pleasant day

birnou

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 23, 2020 Nov 23, 2020

Copy link to clipboard

Copied

When styles do not show up, it's often due to code errors.  But without knowing more about your workflow, it's impossible to guess what may be happening.

 

1. Are you working in a defined local site folder that resides on your primary hard drive?  Site > New Site...

 

2. Are you adding CSS to an external stylesheet file or embedding new rules between the <style> tags in your HTML document's <head> tag?

 

3. When using the CC Designer Panel, are you saving your work often with Ctrl/Cmd+S and refreshing Live view with F5?

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

Hi Nancy! Thank you for trying to help me! As I was saying in my initial
post I am trying to abandon Muse completely and switch to Dreamweaver. I
have done a few tutorials but I believe I need to do more of them. It is
definitely too early in the process to ask questions. I do need to learn
more. I apologize. Please disregard my question. However I do have a couple
questions for you. I saw in one of your threads that you advised someone to
create websites in Dreamweaver with bootstrap because it is easier. Do you
still think that is the way to go? Also can html and bootstrap elements,
snippets etc be mixed when building a bootstrap based websites? My second
question is I have a website that I built with Muse. I exported it as html
into Dreamweaver to edit it but I found out that it is not easy. Let’s say
I was trying to change the background color on the main page. I practically
looked everywhere but I believe it is not there or if it is it is part of a
webkit or else! Is there a way to override css properties? Muse does not do
a good job at all exporting in html. The website looks perfect but the html
is horrible. I can really use your help. Thank you, Umberto.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

What is the URL to your current website where you want to change the background?

 

When you can manually build a basic HTML page, you're ready to use a code editor like Dreamweaver.

See links below.  Read chapters, do code exercises and take quizzes at the end.
- https://www.w3schools.com/html/
- https://www.w3schools.com/css/
- https://www.w3schools.com/js/

Bootstrap is an HTML and CSS framework for creating responsive layouts that perform well on all devices.  Using Bootstrap's library will save you many hours of tedious manual coding.  But to get the most out of Bootstrap, you should understand code and more specifically Bootstrap's 12-box grid system and built-in classes. It's not hard, anyone who can count to 12 can learn to use Bootstrap.  But don't mix Bootstrap with Muse generated code because Muse code is horrible.

-- https://www.w3schools.com/bootstrap4/

-- https://getbootstrap.com/docs/4.5/getting-started/introduction/

-- https://getbootstrap.com/docs/4.5/examples/

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

The url is www. scannicchio.com

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

OK the red background is coming from this in your index.css file:

.html {background-color:#ED1C24; }

 

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

Yes I saw it but when I change it it does not change my background

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

Open index.css file and edit code manually. 

Change background-color to #EAEAEA.

Save changes (Ctrl/Cmd + S). 

Upload file to server and refresh your browser.

 

It should look like this:

image.png

 

The address box is getting it's red background-color another stylesheet called master_a-master.css file.

#u80-8 {
background-color: #ED1C24;

}

 

I wasn't exagerating when I said Muse code is horrible.

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

Yes it worked. Thank you very much. I will follow your advise to do some
courses and hopefully I will be able to get rid of Muse. Thank you again
for your help! Have a nice Thanksgiving!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 24, 2020 Nov 24, 2020

Copy link to clipboard

Copied

LATEST

You too and stay safe.

 

Nancy O'Shea— Product User, Community Expert & Moderator

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines