How to make all my buttons the same size

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default How to make all my buttons the same size

    Hi All
    [Classic ASP]
    I have got a simple admin area menu with html form buttons to each area of
    the site admin.
    How can I make all the buttons the same size so it all looks pretty. I'm
    guessing it is something to do with css but I'm unsure.

    Regards
    Bren


    Bren Guest

  2. Similar Questions and Discussions

    1. how to make buttons
      how or with what tool can i make buttons for intergrate in flash
    2. To make spinning buttons?
      hey how do i make my buttons spin once the cursor is over it? Thanks Martin www.station33.tkhttps://www.station33.tk
    3. Flash buttons like these. help how to make them?
      here's an EG. http://www.websitedesigns.com.au/ The green flash ones up the top. Can someone please, help me with creating them. once the...
    4. how can i make a bar with buttons on it?
      i would like to have a bar with buttons in it like the (file- edit- favorites-toola-help) bar is there any xtras that i can get or is there...
    5. Trying to make Flash Buttons
      Hey there, I've been trying to make a flash button following the procedure outlined by Daaf79 but, I just can't see the button listed in...
  3. #2

    Default Re: How to make all my buttons the same size

    style="width:100px;color=pink;border=plaid"

    OK, you can leave out that last part.


    "Bren" <bren@dontbothertoreply.com> wrote in message
    news:d6avho$t2$1@forums.macromedia.com...
    > Hi All
    > [Classic ASP]
    > I have got a simple admin area menu with html form buttons to each area of
    > the site admin.
    > How can I make all the buttons the same size so it all looks pretty. I'm
    > guessing it is something to do with css but I'm unsure.
    >
    > Regards
    > Bren
    >
    >

    middletree Guest

  4. #3

    Default Re: How to make all my buttons the same size

    Change the HTML button code to the following:

    <input type="submit" name="Submit" value="Submit" style="width: 200px;">

    This sets the button width to 200px;

    Ideally though, you would set up a css class, and then assign the class to
    the buttons, so that if you want to change the width in future you only have
    to change it once. EG

    <style type="text/css">
    <!--
    ..buttonWidth {
    width: 200px;
    }
    -->
    </style>

    <input type="submit" name="Submit" value="Submit" class="buttonWidth">

    Both achieve the same thing, but the second method is the best way to go.


    --
    Gareth - TMM Dreamweaver
    [url]http://www.dreamweavermxsupport.com/[/url]
    [url]http://www.garethdp.com/[/url]

    PHP Login Suite V2 - 34 Server Behaviors to build a complete Login system.
    [url]http://www.phploginsuite.co.uk/[/url]

    Co-Author: Dreamweaver MX: Instant Troubleshooter - Apress
    Co-Author: Practical Intranet Development - Apress
    Co-Author: Dreamweaver MX: Advanced PHP Web Development - Apress
    Co-Author: Dreamweaver MX: PHP Web Development - Wrox





    gareth Guest

  5. #4

    Default Re: How to make all my buttons the same size

    Cheers guys


    "Bren" <bren@dontbothertoreply.com> wrote in message
    news:d6avho$t2$1@forums.macromedia.com...
    > Hi All
    > [Classic ASP]
    > I have got a simple admin area menu with html form buttons to each area of
    > the site admin.
    > How can I make all the buttons the same size so it all looks pretty. I'm
    > guessing it is something to do with css but I'm unsure.
    >
    > Regards
    > Bren
    >

    Bren Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139