Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21
  1. #11
    Join Date
    Jun 2003
    Posts
    33,720
    Plugin Contributions
    0

    Default Re: how to make clickable buttons

    I'm just learning sorry
    May I suggest you do the things you really need to run your business and then work on the things that are only surface dressing?
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  2. #12
    Join Date
    Feb 2010
    Posts
    14
    Plugin Contributions
    0

    Default Re: how to make clickable buttons

    i this hard? why do you question me i need help with this only. i need to make a button change from one image to another image to make the button look like it moves. but only when someone clicks not when they just put mouse over it. if anyone can help please feel free i just need a basic example of how i would do this and i can handle it from there. all help is greatly appreciated

  3. #13
    Join Date
    Jan 2009
    Location
    Sask, Canada.
    Posts
    44
    Plugin Contributions
    0

    Default Easiest or best way to do this?

    Does anybody know the most efficient way to do this in zen cart?

    I am also wondering the easiest or best way to make my custom button set have visual click effect in zen cart.

    I have a custom button set made with 2 images for each button. One image for the button and one for the button when clicked.

    Would I have to edit the code in every php file for each button individually or is there a css command I can add to my stylesheet that will let me do this for all buttons at once?

    I am hoping there is some way to do this without going into each php file and editing each buttons code individually.

    Just looking for a zen cart professionals opinion on which is the fastest or most efficient way to do this on zen cart.

  4. #14
    Join Date
    Feb 2010
    Posts
    14
    Plugin Contributions
    0

    Default Re: how to make clickable buttons

    Please Help i have been doing some searches and i am still stuck. I thought this would be one of the easier things to do


    Does anybody know the most efficient way to do this in zen cart?

    I am also wondering the easiest or best way to make my custom button set have visual click effect in zen cart.

    Would I have to edit the code in every php file for each button individually or is there a css command I can add to my stylesheet that will let me do this for all buttons at once?

    I am hoping there is some way to do this without going into each php file and editing each buttons code individually.

    Just looking for a zen cart professionals opinion on which is the fastest or most efficient way to do this on zen cart.

  5. #15
    Join Date
    Feb 2010
    Posts
    14
    Plugin Contributions
    0

    Default help with Button visual effects

    Does anybody know the most efficient way to make a custom button set have visual click effect in zen cart.I am also wondering the easiest or best way to do this.

    I have a custom button set made with 3 images for each button. One image for the button when highlighted second image for button before clicked and third image for button when clicked.
    i also have one solid image with all 3 button variations in one stacked above the others.
    Example. 1.
    ##########___2.
    ##########___3.

    Would I have to edit the code in every php file for each button individually or is there a css command I can add to my style sheet that will let me do this for all buttons at once?

    I am hoping there is some way to do this without going into each php file and editing each buttons code individually.but if it is the only way that is ok.

    Just looking for a zen cart professionals opinion on which is the fastest or most efficient way to do this on zen cart.

  6. #16
    Join Date
    Jun 2003
    Posts
    33,720
    Plugin Contributions
    0

    Default Re: how to make clickable buttons

    Moderator's note - Please don't repost the same problem in a different thread. Your new post has been merged into your original thread.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  7. #17
    Join Date
    Feb 2010
    Posts
    14
    Plugin Contributions
    0

    Default Re: how to make clickable buttons

    different question than other one thats why i made a new thread

  8. #18
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: how to make clickable buttons

    kab, there's a nice little tutorial HERE.

    Hope this helps.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  9. #19
    Join Date
    Feb 2010
    Posts
    14
    Plugin Contributions
    0

    Default Re: how to make clickable buttons

    thanks for the tutorial i am also wondering if this is the most efficient way of doing this?

  10. #20
    Join Date
    Feb 2010
    Posts
    14
    Plugin Contributions
    0

    Default Re: how to make clickable buttons

    please help i am still stuck i dont know if this is the right way to do the visual effects and if it is how do i apply it to the buttons in zencart?

    Example

    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>CSS Button</title>
    
    <style type="text/css">
    
    * { margin: 0; padding: 0; /* Quick and Dirty Reset */ }
    
    body {
    	background: url(t2.jpg);
    }
    
    #demo {
    	width: 433px; margin: 100px auto;
    }
    
    	#demo p a.press-it-btn {
    		display: block; /* Change anchor to block element */
    		width: 181px; height: 105px; /* Specify width and height of the image. Height is value of each individual button graphic */
    		background-image: url(t1.jpg); /* Add the image as a background */
    		background-position: top; /* Set the position to the top */
    		text-indent: -9999px; /* Send the rendered HTML wording off screen */
    	}
    		#demo p a.press-it-btn:hover, #demo p a.press-it-btn:focus {
    			background-position: center; /* Set the position to the center */
    		}
    		#demo p a.press-it-btn:active {
    			background-position: bottom; /* Set the position to the bottom */
    		}
    
    a { outline: none; }
    </style>
    </head>
    
    <body>
    
    <div id="demo">
    	<p><a href="http://" class="press-it-btn">Press it</a></p>
    </div>
    `
    </body>
    </html>
    Thanks again.

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Logo link - how can I make clickable space larger?
    By Kenichi in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 27 Apr 2010, 07:33 AM
  2. Make header clickable
    By iwantone in forum General Questions
    Replies: 0
    Last Post: 25 Feb 2010, 06:57 PM
  3. How Do I make "Important Links" Clickable?
    By nisdats in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 13 May 2009, 11:50 PM
  4. How can I make my titles not clickable?
    By M_Keller in forum General Questions
    Replies: 0
    Last Post: 30 Nov 2008, 02:57 PM
  5. Buttons in header not clickable
    By canemasters in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 12 Apr 2007, 06:45 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg