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

Menu Bar in Dreamweaver

Community Beginner ,
Mar 22, 2022 Mar 22, 2022

Copy link to clipboard

Copied

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. 

Views

108

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 ,
Mar 22, 2022 Mar 22, 2022

Copy link to clipboard

Copied

LATEST

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 & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

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