Skip to main content
Participant
March 22, 2022
Question

Menu Bar in Dreamweaver

  • March 22, 2022
  • 1 reply
  • 219 views

Good afternoon,

I am trying to create a menu button in dreamweaver 2021. It has been a while since I used dreamweaver, and I was going by a textbook that I used in school. Some of the information is new in the dreamweaver 2021. For instance, when creating a menu bar, the inline command is not in the property or layout panel. I started with the navigation through the insert panel, and I typed in the menu bar. 

This topic has been closed for replies.

1 reply

Nancy OShea
Community Expert
Community Expert
March 22, 2022

Today we use ordinary HTML links styled with CSS to look like buttons. 

As an example.

 

<!DOCTYPE html>
<html lang="en">
<head>
<style>
a:link, a:visited {
  background-color: white;
  color: black;
  border: 2px solid green;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active, a:focus {
  background-color: green;
  color: white;
}
</style>
</head>
<body>
<h2>Link Button</h2>
<a href="some-page.html">This is a link</a>
</body>
</html>

 

 

 

 

Nancy O'Shea— Product User & Community Expert