Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Bren #1
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
-
how to make buttons
how or with what tool can i make buttons for intergrate in flash -
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 -
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... -
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... -
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... -
middletree #2
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
-
gareth #3
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
-
Bren #4
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



Reply With Quote

