PC Review


Reply
 
 
Lisa A
Guest
Posts: n/a
 
      23rd Apr 2006
I am making CSS buttons that change color while on hover. I want the entire
space the link is in change color, and not just the the area behind the
text.
I want to fill the whole space up.
Here is my site page and code:
http://www.horsefarmandranch.com/indexnew.htm
Here is my code:
A:link
{ text-decoration: none; background: #C46B2F; color:#000000; }
A:visited
{ text-decoration: none; color:#23306D; }
A:hover
{ text-decoration: none; background: #EFE0C0; color:#000000; }

body {
background: url(images/ostrichmainbg3.jpg);
}



 
Reply With Quote
 
 
 
 
Kevin Spencer
Guest
Posts: n/a
 
      23rd Apr 2006
Hi Lisa,

The problem here is that the pseudo-classes only apply to links. CSS 2
specifies that the "hover" pseudo-class is not limited to links (but does
not specify what it *does* apply to), but I tested it using divs and tables
in both IE and FireFox, and it only works on links in both browsers.

So, I came up with an alternate solution for you. You start with a style
sheet that defines a class for the hover properties:

<style><!--
a:link.menu
{ text-decoration: none; background: #C46B2F; color:#000000; }
a:visited.menu
{ text-decoration: none; color:#23306D; }
..menu-hover, a:hover
{ text-decoration: none; background: #EFE0C0; color:#0000FF; }
--></style>

Note that the "link" and visited are specifically applied to links. That is
because they can only *be* applied to links. The class is not as of yet
assigned to any elements in your page. Now you add a JavaScript function to
add or remove the class from any element:

<script type="text/javascript"><!--
var curBackground, curcolor;
function setStyle(el, onOff)
{
if (onOff == true)
el.className = "menu-hover";
else
el.className = "";
}
//--></script>

This function sets the className (CSS class) to the HTML element passed to
it when "onOff" is true. Otherwise, it sets the className to blank.

All that remains is some mouse-handling:

<table border="1" cellpadding="0" width="100%" bordercolor="#000000">
<tr>
<td bgcolor="#C46B2F" onmouseover="setStyle(this, true)"
onmouseout="setStyle(this,false)"><a href="indexnew.htm">Home</a></td>
</tr>
<tr>
<td onmouseover="setStyle(this, true)"
onmouseout="setStyle(this,false)">Real Estate</td>
</tr>
</table>

Note that the cell containing "Real Estate" does not have a link in it. I
did this to demonstrate that the JavaScript is not dependent upon anything
to do with links, but is applied to the element passed to it, in this case,
a table cell.

Now, the class does specify some "link-only" style properties. But these do
not apply to the table cell. They *do* apply to any link *in* the table
cell, however.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Lisa A" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I am making CSS buttons that change color while on hover. I want the
>entire space the link is in change color, and not just the the area behind
>the text.
> I want to fill the whole space up.
> Here is my site page and code:
> http://www.horsefarmandranch.com/indexnew.htm
> Here is my code:
> A:link
> { text-decoration: none; background: #C46B2F; color:#000000; }
> A:visited
> { text-decoration: none; color:#23306D; }
> A:hover
> { text-decoration: none; background: #EFE0C0; color:#000000; }
>
> body {
> background: url(images/ostrichmainbg3.jpg);
> }
>
>
>



 
Reply With Quote
 
P@tty Ayers
Guest
Posts: n/a
 
      23rd Apr 2006
Hi Lisa,

You can do that with the CSS rule "display: block". Here's a sample:

http://www.carolinawebsolutions.com/.../horiz-nav.htm

If you view the source, you can see the HTML and CSS that makes it work -
not difficult.

Here's an example of this on a real page: http://www.site-med.com/

--
Patty Ayers | www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate Worksheet
--



"Lisa A" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I am making CSS buttons that change color while on hover. I want the
>entire space the link is in change color, and not just the the area behind
>the text.
> I want to fill the whole space up.
> Here is my site page and code:
> http://www.horsefarmandranch.com/indexnew.htm
> Here is my code:
> A:link
> { text-decoration: none; background: #C46B2F; color:#000000; }
> A:visited
> { text-decoration: none; color:#23306D; }
> A:hover
> { text-decoration: none; background: #EFE0C0; color:#000000; }
>
> body {
> background: url(images/ostrichmainbg3.jpg);
> }
>
>
>



 
Reply With Quote
 
Lisa A
Guest
Posts: n/a
 
      24th Apr 2006
Thanks,
I'm going to go over all of this you just told me and thanks for taking the
time to explain it so well.
Lisa
"Kevin Spencer" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi Lisa,
>
> The problem here is that the pseudo-classes only apply to links. CSS 2
> specifies that the "hover" pseudo-class is not limited to links (but does
> not specify what it *does* apply to), but I tested it using divs and
> tables in both IE and FireFox, and it only works on links in both
> browsers.
>
> So, I came up with an alternate solution for you. You start with a style
> sheet that defines a class for the hover properties:
>
> <style><!--
> a:link.menu
> { text-decoration: none; background: #C46B2F; color:#000000; }
> a:visited.menu
> { text-decoration: none; color:#23306D; }
> .menu-hover, a:hover
> { text-decoration: none; background: #EFE0C0; color:#0000FF; }
> --></style>
>
> Note that the "link" and visited are specifically applied to links. That
> is because they can only *be* applied to links. The class is not as of yet
> assigned to any elements in your page. Now you add a JavaScript function
> to add or remove the class from any element:
>
> <script type="text/javascript"><!--
> var curBackground, curcolor;
> function setStyle(el, onOff)
> {
> if (onOff == true)
> el.className = "menu-hover";
> else
> el.className = "";
> }
> //--></script>
>
> This function sets the className (CSS class) to the HTML element passed to
> it when "onOff" is true. Otherwise, it sets the className to blank.
>
> All that remains is some mouse-handling:
>
> <table border="1" cellpadding="0" width="100%" bordercolor="#000000">
> <tr>
> <td bgcolor="#C46B2F" onmouseover="setStyle(this, true)"
> onmouseout="setStyle(this,false)"><a href="indexnew.htm">Home</a></td>
> </tr>
> <tr>
> <td onmouseover="setStyle(this, true)"
> onmouseout="setStyle(this,false)">Real Estate</td>
> </tr>
> </table>
>
> Note that the cell containing "Real Estate" does not have a link in it. I
> did this to demonstrate that the JavaScript is not dependent upon anything
> to do with links, but is applied to the element passed to it, in this
> case, a table cell.
>
> Now, the class does specify some "link-only" style properties. But these
> do not apply to the table cell. They *do* apply to any link *in* the table
> cell, however.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> Professional Numbskull
>
> Hard work is a medication for which
> there is no placebo.
>
> "Lisa A" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>>I am making CSS buttons that change color while on hover. I want the
>>entire space the link is in change color, and not just the the area behind
>>the text.
>> I want to fill the whole space up.
>> Here is my site page and code:
>> http://www.horsefarmandranch.com/indexnew.htm
>> Here is my code:
>> A:link
>> { text-decoration: none; background: #C46B2F; color:#000000; }
>> A:visited
>> { text-decoration: none; color:#23306D; }
>> A:hover
>> { text-decoration: none; background: #EFE0C0; color:#000000; }
>>
>> body {
>> background: url(images/ostrichmainbg3.jpg);
>> }
>>
>>
>>

>
>



 
Reply With Quote
 
Lisa A
Guest
Posts: n/a
 
      24th Apr 2006
Patty,
I see how that works and notice you've also used a javascript for the links.
Is that what the previous person just posted? I didn't know that you needed
java script included.
thanks for your help.
Lisa

"P@tty Ayers" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi Lisa,
>
> You can do that with the CSS rule "display: block". Here's a sample:
>
> http://www.carolinawebsolutions.com/.../horiz-nav.htm
>
> If you view the source, you can see the HTML and CSS that makes it work -
> not difficult.
>
> Here's an example of this on a real page: http://www.site-med.com/
>
> --
> Patty Ayers | www.WebDevBiz.com
> Free Articles on the Business of Web Development
> Web Design Contract, Estimate Request Form, Estimate Worksheet
> --
>
>
>
> "Lisa A" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>>I am making CSS buttons that change color while on hover. I want the
>>entire space the link is in change color, and not just the the area behind
>>the text.
>> I want to fill the whole space up.
>> Here is my site page and code:
>> http://www.horsefarmandranch.com/indexnew.htm
>> Here is my code:
>> A:link
>> { text-decoration: none; background: #C46B2F; color:#000000; }
>> A:visited
>> { text-decoration: none; color:#23306D; }
>> A:hover
>> { text-decoration: none; background: #EFE0C0; color:#000000; }
>>
>> body {
>> background: url(images/ostrichmainbg3.jpg);
>> }
>>
>>
>>

>
>



 
Reply With Quote
 
Kevin Spencer
Guest
Posts: n/a
 
      24th Apr 2006
Hi Lisa,

No, that's pure style sheet. The JavaScript was just to make the links act
like links. I did not thnk of Patty's solution, probably because she keeps
more in practice! I would go with her solution.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Lisa A" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Patty,
> I see how that works and notice you've also used a javascript for the
> links. Is that what the previous person just posted? I didn't know that
> you needed java script included.
> thanks for your help.
> Lisa
>
> "P@tty Ayers" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi Lisa,
>>
>> You can do that with the CSS rule "display: block". Here's a sample:
>>
>> http://www.carolinawebsolutions.com/.../horiz-nav.htm
>>
>> If you view the source, you can see the HTML and CSS that makes it work -
>> not difficult.
>>
>> Here's an example of this on a real page: http://www.site-med.com/
>>
>> --
>> Patty Ayers | www.WebDevBiz.com
>> Free Articles on the Business of Web Development
>> Web Design Contract, Estimate Request Form, Estimate Worksheet
>> --
>>
>>
>>
>> "Lisa A" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>>I am making CSS buttons that change color while on hover. I want the
>>>entire space the link is in change color, and not just the the area
>>>behind the text.
>>> I want to fill the whole space up.
>>> Here is my site page and code:
>>> http://www.horsefarmandranch.com/indexnew.htm
>>> Here is my code:
>>> A:link
>>> { text-decoration: none; background: #C46B2F; color:#000000; }
>>> A:visited
>>> { text-decoration: none; color:#23306D; }
>>> A:hover
>>> { text-decoration: none; background: #EFE0C0; color:#000000; }
>>>
>>> body {
>>> background: url(images/ostrichmainbg3.jpg);
>>> }
>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
P@tty Ayers
Guest
Posts: n/a
 
      24th Apr 2006
As Kevin said, "javascript:;" is just a "null" (placeholder) link. I could
have used "#". Just replace those with real hyperlinks when you're ready.


--
Patty Ayers | www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate Worksheet
--


"Lisa A" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Patty,
> I see how that works and notice you've also used a javascript for the
> links. Is that what the previous person just posted? I didn't know that
> you needed java script included.
> thanks for your help.
> Lisa
>
> "P@tty Ayers" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi Lisa,
>>
>> You can do that with the CSS rule "display: block". Here's a sample:
>>
>> http://www.carolinawebsolutions.com/.../horiz-nav.htm
>>
>> If you view the source, you can see the HTML and CSS that makes it work -
>> not difficult.
>>
>> Here's an example of this on a real page: http://www.site-med.com/
>>
>> --
>> Patty Ayers | www.WebDevBiz.com
>> Free Articles on the Business of Web Development
>> Web Design Contract, Estimate Request Form, Estimate Worksheet
>> --
>>
>>
>>
>> "Lisa A" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>>I am making CSS buttons that change color while on hover. I want the
>>>entire space the link is in change color, and not just the the area
>>>behind the text.
>>> I want to fill the whole space up.
>>> Here is my site page and code:
>>> http://www.horsefarmandranch.com/indexnew.htm
>>> Here is my code:
>>> A:link
>>> { text-decoration: none; background: #C46B2F; color:#000000; }
>>> A:visited
>>> { text-decoration: none; color:#23306D; }
>>> A:hover
>>> { text-decoration: none; background: #EFE0C0; color:#000000; }
>>>
>>> body {
>>> background: url(images/ostrichmainbg3.jpg);
>>> }
>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
P@tty Ayers
Guest
Posts: n/a
 
      24th Apr 2006
I'm supposed to be practicing? Uh oh. :-D


--
Patty Ayers | www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate Worksheet
--

"Kevin Spencer" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi Lisa,
>
> No, that's pure style sheet. The JavaScript was just to make the links act
> like links. I did not thnk of Patty's solution, probably because she keeps
> more in practice! I would go with her solution.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> Professional Numbskull
>
> Hard work is a medication for which
> there is no placebo.
>
> "Lisa A" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Patty,
>> I see how that works and notice you've also used a javascript for the
>> links. Is that what the previous person just posted? I didn't know that
>> you needed java script included.
>> thanks for your help.
>> Lisa
>>
>> "P@tty Ayers" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Hi Lisa,
>>>
>>> You can do that with the CSS rule "display: block". Here's a sample:
>>>
>>> http://www.carolinawebsolutions.com/.../horiz-nav.htm
>>>
>>> If you view the source, you can see the HTML and CSS that makes it
>>> work - not difficult.
>>>
>>> Here's an example of this on a real page: http://www.site-med.com/
>>>
>>> --
>>> Patty Ayers | www.WebDevBiz.com
>>> Free Articles on the Business of Web Development
>>> Web Design Contract, Estimate Request Form, Estimate Worksheet
>>> --
>>>
>>>
>>>
>>> "Lisa A" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>>I am making CSS buttons that change color while on hover. I want the
>>>>entire space the link is in change color, and not just the the area
>>>>behind the text.
>>>> I want to fill the whole space up.
>>>> Here is my site page and code:
>>>> http://www.horsefarmandranch.com/indexnew.htm
>>>> Here is my code:
>>>> A:link
>>>> { text-decoration: none; background: #C46B2F; color:#000000; }
>>>> A:visited
>>>> { text-decoration: none; color:#23306D; }
>>>> A:hover
>>>> { text-decoration: none; background: #EFE0C0; color:#000000; }
>>>>
>>>> body {
>>>> background: url(images/ostrichmainbg3.jpg);
>>>> }
>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
P@tty Ayers
Guest
Posts: n/a
 
      24th Apr 2006
Lisa - Just note that the way I posted is probably simpler and easier
(according to Kevin - I'm not familiar with his method).


--
Patty Ayers | www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate Worksheet
--


"Lisa A" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Thanks,
> I'm going to go over all of this you just told me and thanks for taking
> the time to explain it so well.
> Lisa
> "Kevin Spencer" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi Lisa,
>>
>> The problem here is that the pseudo-classes only apply to links. CSS 2
>> specifies that the "hover" pseudo-class is not limited to links (but does
>> not specify what it *does* apply to), but I tested it using divs and
>> tables in both IE and FireFox, and it only works on links in both
>> browsers.
>>
>> So, I came up with an alternate solution for you. You start with a style
>> sheet that defines a class for the hover properties:
>>
>> <style><!--
>> a:link.menu
>> { text-decoration: none; background: #C46B2F; color:#000000; }
>> a:visited.menu
>> { text-decoration: none; color:#23306D; }
>> .menu-hover, a:hover
>> { text-decoration: none; background: #EFE0C0; color:#0000FF; }
>> --></style>
>>
>> Note that the "link" and visited are specifically applied to links. That
>> is because they can only *be* applied to links. The class is not as of
>> yet assigned to any elements in your page. Now you add a JavaScript
>> function to add or remove the class from any element:
>>
>> <script type="text/javascript"><!--
>> var curBackground, curcolor;
>> function setStyle(el, onOff)
>> {
>> if (onOff == true)
>> el.className = "menu-hover";
>> else
>> el.className = "";
>> }
>> //--></script>
>>
>> This function sets the className (CSS class) to the HTML element passed
>> to it when "onOff" is true. Otherwise, it sets the className to blank.
>>
>> All that remains is some mouse-handling:
>>
>> <table border="1" cellpadding="0" width="100%" bordercolor="#000000">
>> <tr>
>> <td bgcolor="#C46B2F" onmouseover="setStyle(this, true)"
>> onmouseout="setStyle(this,false)"><a href="indexnew.htm">Home</a></td>
>> </tr>
>> <tr>
>> <td onmouseover="setStyle(this, true)"
>> onmouseout="setStyle(this,false)">Real Estate</td>
>> </tr>
>> </table>
>>
>> Note that the cell containing "Real Estate" does not have a link in it. I
>> did this to demonstrate that the JavaScript is not dependent upon
>> anything to do with links, but is applied to the element passed to it, in
>> this case, a table cell.
>>
>> Now, the class does specify some "link-only" style properties. But these
>> do not apply to the table cell. They *do* apply to any link *in* the
>> table cell, however.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> Professional Numbskull
>>
>> Hard work is a medication for which
>> there is no placebo.
>>
>> "Lisa A" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>>I am making CSS buttons that change color while on hover. I want the
>>>entire space the link is in change color, and not just the the area
>>>behind the text.
>>> I want to fill the whole space up.
>>> Here is my site page and code:
>>> http://www.horsefarmandranch.com/indexnew.htm
>>> Here is my code:
>>> A:link
>>> { text-decoration: none; background: #C46B2F; color:#000000; }
>>> A:visited
>>> { text-decoration: none; color:#23306D; }
>>> A:hover
>>> { text-decoration: none; background: #EFE0C0; color:#000000; }
>>>
>>> body {
>>> background: url(images/ostrichmainbg3.jpg);
>>> }
>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Kevin Spencer
Guest
Posts: n/a
 
      24th Apr 2006
Definitely, Patty. As a programmer, I can always write a workaround. CSS, on
the other hand, is elegant and simple (except for the rules!).

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"P@tty Ayers" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Lisa - Just note that the way I posted is probably simpler and easier
> (according to Kevin - I'm not familiar with his method).
>
>
> --
> Patty Ayers | www.WebDevBiz.com
> Free Articles on the Business of Web Development
> Web Design Contract, Estimate Request Form, Estimate Worksheet
> --
>
>
> "Lisa A" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Thanks,
>> I'm going to go over all of this you just told me and thanks for taking
>> the time to explain it so well.
>> Lisa
>> "Kevin Spencer" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Hi Lisa,
>>>
>>> The problem here is that the pseudo-classes only apply to links. CSS 2
>>> specifies that the "hover" pseudo-class is not limited to links (but
>>> does not specify what it *does* apply to), but I tested it using divs
>>> and tables in both IE and FireFox, and it only works on links in both
>>> browsers.
>>>
>>> So, I came up with an alternate solution for you. You start with a style
>>> sheet that defines a class for the hover properties:
>>>
>>> <style><!--
>>> a:link.menu
>>> { text-decoration: none; background: #C46B2F; color:#000000; }
>>> a:visited.menu
>>> { text-decoration: none; color:#23306D; }
>>> .menu-hover, a:hover
>>> { text-decoration: none; background: #EFE0C0; color:#0000FF; }
>>> --></style>
>>>
>>> Note that the "link" and visited are specifically applied to links. That
>>> is because they can only *be* applied to links. The class is not as of
>>> yet assigned to any elements in your page. Now you add a JavaScript
>>> function to add or remove the class from any element:
>>>
>>> <script type="text/javascript"><!--
>>> var curBackground, curcolor;
>>> function setStyle(el, onOff)
>>> {
>>> if (onOff == true)
>>> el.className = "menu-hover";
>>> else
>>> el.className = "";
>>> }
>>> //--></script>
>>>
>>> This function sets the className (CSS class) to the HTML element passed
>>> to it when "onOff" is true. Otherwise, it sets the className to blank.
>>>
>>> All that remains is some mouse-handling:
>>>
>>> <table border="1" cellpadding="0" width="100%" bordercolor="#000000">
>>> <tr>
>>> <td bgcolor="#C46B2F" onmouseover="setStyle(this, true)"
>>> onmouseout="setStyle(this,false)"><a href="indexnew.htm">Home</a></td>
>>> </tr>
>>> <tr>
>>> <td onmouseover="setStyle(this, true)"
>>> onmouseout="setStyle(this,false)">Real Estate</td>
>>> </tr>
>>> </table>
>>>
>>> Note that the cell containing "Real Estate" does not have a link in it.
>>> I did this to demonstrate that the JavaScript is not dependent upon
>>> anything to do with links, but is applied to the element passed to it,
>>> in this case, a table cell.
>>>
>>> Now, the class does specify some "link-only" style properties. But these
>>> do not apply to the table cell. They *do* apply to any link *in* the
>>> table cell, however.
>>>
>>> --
>>> HTH,
>>>
>>> Kevin Spencer
>>> Microsoft MVP
>>> Professional Numbskull
>>>
>>> Hard work is a medication for which
>>> there is no placebo.
>>>
>>> "Lisa A" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>>I am making CSS buttons that change color while on hover. I want the
>>>>entire space the link is in change color, and not just the the area
>>>>behind the text.
>>>> I want to fill the whole space up.
>>>> Here is my site page and code:
>>>> http://www.horsefarmandranch.com/indexnew.htm
>>>> Here is my code:
>>>> A:link
>>>> { text-decoration: none; background: #C46B2F; color:#000000; }
>>>> A:visited
>>>> { text-decoration: none; color:#23306D; }
>>>> A:hover
>>>> { text-decoration: none; background: #EFE0C0; color:#000000; }
>>>>
>>>> body {
>>>> background: url(images/ostrichmainbg3.jpg);
>>>> }
>>>>
>>>>
>>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Buttons or links in Word like Outlook voting buttons Heidi Microsoft Word Document Management 2 28th Aug 2009 03:12 PM
have toggle buttons but everytime print preview buttons move =?Utf-8?B?VGluU2FuZGh1?= Microsoft Excel Misc 1 11th Oct 2006 02:57 PM
Outlook 2007 - HTML radio buttons, submit buttons, text fields... =?Utf-8?B?bWlndWVsaXRvOTI4?= Microsoft Outlook Discussion 2 13th Sep 2006 08:20 PM
Changing interactive buttons back to buttons in original theme. Chris Microsoft Frontpage 2 23rd Jun 2006 09:42 AM
2 buttons but want enter key in textbox to execute one buttons' click event? Roger Microsoft ASP .NET 1 20th May 2005 10:47 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:04 AM.