| View previous topic :: View next topic |
| Author |
Message |
huntmdown

Joined: 27 Sep 2006 Posts: 11 Location: Illinois
|
Posted: Wed Sep 27, 2006 1:45 pm Creating Buttons |
|
|
|
OK...I have misplaced my YSB Book....How do I create buttons to link visitors to another page? For example right now I have a plain link, Home Decor; Is there anything in YSB to create a button around the words Home Decor?  |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
|
huntmdown

Joined: 27 Sep 2006 Posts: 11 Location: Illinois
|
Posted: Wed Sep 27, 2006 1:58 pm |
|
|
|
Corey,
You rock! Thanks! YSB - Yahoo Site Builder, do I just make sure I store this code in the root directory? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
Posted: Thu Sep 28, 2006 4:26 am |
|
|
|
The code itself it on the specific web page that you want the button to appear on. It does not realy matter where the web page itself is stored.
_________________
Corey
Toll Fax Numbers | Merchant Accounts |
|
huntmdown

Joined: 27 Sep 2006 Posts: 11 Location: Illinois
|
Posted: Thu Sep 28, 2006 1:29 pm |
|
|
|
| Thank you! |
|
Titan
Joined: 26 Mar 2007 Posts: 5
|
Posted: Mon Mar 26, 2007 12:34 pm buttons |
|
|
|
| how do you link a button to a page? |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
|
Titan
Joined: 26 Mar 2007 Posts: 5
|
Posted: Mon Mar 26, 2007 1:02 pm hmmmm |
|
|
|
see idk this stuff all i know is this code: and i want to know how to link it...
<html>
<body>
<form action="">
<input type="button" value="Hello world!">
</form>
</body>
</html> |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
Posted: Mon Mar 26, 2007 1:17 pm |
|
|
|
This is a form. What are you doing with the form? What action is being done? Actually you have the same question here. it is good to only have one thread going so that everyone will see what is happening.
_________________
Corey
Toll Free Numbers | Merchant Accounts |
|
Keikura

Joined: 24 Mar 2007 Posts: 167 Location: U.K.
|
Posted: Mon Mar 26, 2007 1:27 pm |
|
|
|
Quick and easy way to make a button.
1) Create an image say 20px high and 100px wide.
2) Add colour, text etc.
3) Upload to your site' images folder.
4) The code...
| Code: |
<a href="linktosomepage.html" title="A link to somewhere...">
<img src="images/button_1.jpg" height="20px" width="100px" />
</a> |
Or an even quicker way now that I think about it...
| Code: |
div.button
{
width:140px;
background-color:#FFFF66;
border:1px #000000 solid;
text-align:center;
padding-top:4px;
padding-bottom:4px;
}
. . . . .
<a href="#" title="Button Title">
<div class="button">Button Text</div>
</a> |
|
|
Titan
Joined: 26 Mar 2007 Posts: 5
|
Posted: Tue Mar 27, 2007 3:11 pm thank you |
|
|
|
thank you, cory and keikura, sorry cory about my mistake of putting in two posts.  |
|
Titan
Joined: 26 Mar 2007 Posts: 5
|
Posted: Tue Mar 27, 2007 4:04 pm Another thing |
|
|
|
I want to know how to make a picture apear on a page , transparent like a transparent picture?
-if i drew an image on paint then i wanted it to be transparent with no white stuff?  |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8268 Location: Castle Rock CO USA
|
|
mrLenin
Joined: 23 Nov 2006 Posts: 26
|
Posted: Mon Apr 30, 2007 3:37 am |
|
|
|
| What button are you talking about? Like "New Topic" or "Post Reply" ? |
|
Keikura

Joined: 24 Mar 2007 Posts: 167 Location: U.K.
|
Posted: Mon Apr 30, 2007 10:33 am |
|
|
|
| mrLenin wrote: |
| What button are you talking about? Like "New Topic" or "Post Reply" ? |
A button is a button, it's easy enough to change the text shown on it and the href attribute' value it has. |
|
|