How do i get these Buttons on a site? |
How do i get these Buttons on a site? |
![]()
Post
#1
|
|
Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 156 Joined: Feb 2008 Member No: 618,573 ![]() |
if want a UPLOAD or SUBMIT button for pictures or videos how can i get them? will any host have them in there sitemaker, do any CMS an easy way to put this?
|
|
|
![]() |
![]()
Post
#2
|
|
![]() Mel Blanc was allergic to carrots. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Designer Posts: 6,371 Joined: Aug 2008 Member No: 676,291 ![]() |
Well, if you're asking how to make a button for a form just use the little snippet below at the end of your form before the </form> tag.
CODE <value="Submit" type="submit" class="button"> If you're asking how to use a image as a button then just define the 'button' class in your css with a background-image: url(""); property that has the url of the image you want to use. Like so: Your CSS: CODE .button {background-color:transparent; background-image: url("http://www.urlofimage.com/urlofimage.png"); width:XXXpx; height:XXXpx;} You can also google on how to use different methods on this. Also, I'm not sure but if you're asking how to make a picture/video upload form than that will require knowledge of PHP and Javascript. |
|
|
![]() ![]() |