How do you make a link by a button field.
I don't need to ordinary image link or button.
But a field (in dreamweaver green transparent) where u can put up coördinates where it belong to with a link to an other page. When to user click on that side of the page it will goes to another part of the page or another page like a link.

Can someone help me with this ?

Recommended Answers

All 7 Replies

Member Avatar for LastMitch

@Fannyyyyyyyyyyyyyyyyy

How do you make a link by a button field.
I don't need to ordinary image link or button.
But a field (in dreamweaver green transparent) where u can put up coördinates where it belong to with a link to an other page. When to user click on that side of the page it will goes to another part of the page or another page like a link.

Can you provide a code so we can understand you better?

@LastMitch
I don't know the code that's why I want to know right now.

Your question is not very clear, at least not to me. You want to create a button that acts like a link? If so, that is just a styling thing.

What do you mean by all of this?

But a field (in dreamweaver green transparent) where u can put up coördinates where it belong to with a link to an other page. When to user click on that side of the page it will goes to another part of the page or another page like a link.

If you are just looking for a hyperlink to look like a button, here is one example...

<!DOCTYPE html>
<html>
<head>
<style>
a {
  display:block;
  height:25px;
  width:75px;
  padding:10px;
  background-color:#DEDEDE;
  color:#363636;
  border:2px solid #7F7F7F;
  text-align:center;
  border-radius:15px;
  box-shadow:1px 1px 5px #7f7F7F;
}
a:hover {
  background-color:#7F7F7F;
  color:#DEDEDE
}
</style>

</head>
<body>

  <a href="#">Click Me!</a>

</body>
</html>

Well, u made by photoshop an image where u designed a button. But I need like an area that covers the button on image and when the user click on that specific area of your image or area of your page and it will go to another page.

I found it:

<map name="Map" id="Map">
<area shape="rect" coords="182,194,341,320" href="#" />
</map>

thanks xd

Yeah just make an image map, Or I suppose you could use a block? Depends on what you want the button to look like, and how big

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.