<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1019926" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1019926</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121279</link>
    <description> &lt;p&gt;She&#039;s up!&lt;/p&gt;
&lt;p&gt;Details of the change have been listed in the SNW review thread.  But for those in this thread, changes include a revised &#039;search &amp;amp; translation controls&#039; area, with graphic &#039;go&#039; button and hover effects.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.supernaturalwoman.com&quot; class=&quot;bb-url&quot;&gt;http://www.supernaturalwoman.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Peter&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 03:33:02 +0000</pubDate>
 <dc:creator>pmj7</dc:creator>
 <guid isPermaLink="false">comment 1121279 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121277</link>
    <description> &lt;p&gt;Looking forward to seeing it in action.&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 01:43:03 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1121277 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121274</link>
    <description> &lt;p&gt;Thank you once again, Suzanne!  &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Using your suggestions and some extra code/css I have something that works on Explorer, Netscape and Opera under Windows.  Netscape 4.x will show a plain page as it has always done at &lt;a href=&quot;http://www.supernaturalwoman.com.&quot; class=&quot;bb-url&quot;&gt;http://www.supernaturalwoman.com.&lt;/a&gt;  I will put up the revised pages within the next few days.&lt;/p&gt;
&lt;p&gt;Peter&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Dec 2002 01:18:11 +0000</pubDate>
 <dc:creator>pmj7</dc:creator>
 <guid isPermaLink="false">comment 1121274 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121265</link>
    <description> &lt;p&gt;For the record, to do something to one specific element, you would set the id for that element. Such as...&lt;/p&gt;
&lt;p&gt;input#thisone:hover {}&lt;/p&gt;
&lt;p&gt;You would hide this style from N4.x, preventing any &quot;bombing&quot;.&lt;/p&gt;
&lt;p&gt;Hiding styles from various browsers: &lt;a href=&quot;http://www.ericmeyeroncss.com/bonus/trick-hide.html&quot; class=&quot;bb-url&quot;&gt;http://www.ericmeyeroncss.com/bonus/trick-hide.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It would work in IE5+, and Netscape7, but possibly not Opera (I don&#039;t have a PC to test at the moment).&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 23:28:10 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1121265 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121259</link>
    <description> &lt;p&gt;To clear things up for people just joining, I&#039;m trying to make a border appear around a linked image (even one within a form).  This can be done with a true border, or with a gif that has a 1-pixel transparent border and changing the background color.&lt;/p&gt;
&lt;p&gt;Thanks for the input.  Suzanne, your code places a border around all form controls.  In a standard Search ________ Go setup, this includes the text entry control as well.  Also, having it bomb on Netscape 4.x sounds like a bit of a drawback, so I haven&#039;t looked further into it.&lt;/p&gt;
&lt;p&gt;Here is my current solution.  It uses the onmouseover to change the style of the element.  Granted it only works in Explorer, as expected since it&#039;s based on code generated by Frontpage.  I&#039;m searching the web on how to change the style of an element universally.&lt;/p&gt;
&lt;p&gt;This requires some JavaScript:&lt;/p&gt;
&lt;p&gt;function rollIn(el)&lt;br /&gt;
{&lt;br /&gt;
	var ms = navigator.appVersion.indexOf(&quot;MSIE&quot;)&lt;br /&gt;
	ie4 = (ms&amp;gt;0) &amp;amp;&amp;amp; (parseInt(navigator.appVersion.substring(ms+5, ms+6)) &amp;gt;= 4)&lt;br /&gt;
	if(ie4)&lt;br /&gt;
	{&lt;br /&gt;
		el.initstyle=el.style.cssText;&lt;br /&gt;
		el.style.cssText=el.myrolloverstyle;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;function rollOut(el)&lt;br /&gt;
{&lt;br /&gt;
	var ms = navigator.appVersion.indexOf(&quot;MSIE&quot;)&lt;br /&gt;
	ie4 = (ms&amp;gt;0) &amp;amp;&amp;amp; (parseInt(navigator.appVersion.substring(ms+5, ms+6)) &amp;gt;= 4)&lt;br /&gt;
	if(ie4)&lt;br /&gt;
		el.style.cssText=el.initstyle&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;To place a border on linked images outside a form is a bit easier:&lt;/p&gt;
&lt;p&gt;&lt;a&gt;&lt;img /&gt;&lt;/a&gt;&lt;a&gt;&lt;img /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;.flagborder a:link img {&lt;br /&gt;
	border:1px #2175bc solid;&lt;br /&gt;
}&lt;br /&gt;
.flagborder a:hover img {&lt;br /&gt;
	border:1px yellow solid;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Peter&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 20:32:33 +0000</pubDate>
 <dc:creator>pmj7</dc:creator>
 <guid isPermaLink="false">comment 1121259 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121210</link>
    <description> &lt;p&gt;Actually... not the case. &lt;/p&gt;
&lt;p&gt;input:hover works fine in IE6, N7, et cetera. Pseudo classes are not limited to any tag. &lt;/p&gt;
&lt;p&gt;I rarely use classes, instead, I use IDs, like so:&lt;/p&gt;
&lt;p&gt;div#someid input:hover {&lt;br /&gt;
     border: 3px solid black;&lt;br /&gt;
     }&lt;/p&gt;
&lt;p&gt;And it works just dandy!&lt;/p&gt;
&lt;p&gt;I&#039;d show you, but I&#039;m sure you can build it yourselves and play around. I have a sample in a secure form that I can&#039;t show you, but if you want, I&#039;ll pull it out for you.&lt;/p&gt;
&lt;p&gt;It doesn&#039;t work in Opera (naturally on the mac -- I can&#039;t test the PC version for readiness).&lt;/p&gt;
&lt;p&gt;Anyway, it is more cutting-edge, yes.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 04:12:59 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1121210 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121208</link>
    <description> &lt;p&gt;Hooray I was right about something&lt;br /&gt;
I suggest JS with Images as well... if you can make the images small enough, which I always have trouble with&lt;br /&gt;
Good luck&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 04:00:54 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1121208 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121207</link>
    <description> &lt;p&gt;only &#039;a&#039; tags (links) are hovered,&lt;br /&gt;
you might be better off using javascript to change the image, this way it&#039;s more user friendly and wil either give a result or wont, where as CSS can give varied results&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 03:58:15 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1121207 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121201</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;em&gt;Originally posted by Renegade &lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;can u give a visual example? i odn&#039;t get what your saying, &lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Is it really that tough?&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:&lt;br /&gt;
Renegade Demystified:&lt;br /&gt;
Can you give me a visual example? I do not understand that which you are saying. (A link to show me what is wrong) &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I&#039;m a bit confused about this subject though...&lt;br /&gt;
I&#039;m not the CSS master but I&#039;ve tried this:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;P.menu {&lt;br /&gt;background: #000000;&lt;br /&gt;color: #ffffff;&lt;br /&gt;}&lt;br /&gt;P.menu:HOVER {&lt;br /&gt;background: #ffffff;&lt;br /&gt;color: #000000;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
However, &lt;strong&gt;  &lt;/strong&gt;when hovered won&#039;t change...&lt;br /&gt;
Am I completely wrong or does only &lt;A&gt; tags allow HOVER??&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 03:48:09 +0000</pubDate>
 <dc:creator>nike_guy_man</dc:creator>
 <guid isPermaLink="false">comment 1121201 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/form-graphic-button-hover-effect#comment-1121188</link>
    <description> &lt;p&gt;Renegade, can you type whole words, love, I don&#039;t get what you&#039;re saying! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;What I&#039;m saying is that in the CSS, you use input:hover { declarations go here } to create the effect you need.&lt;/p&gt;
&lt;p&gt;HOWEVER, IE6&#039;s aqua interface (and IE5/mac) usurp the author&#039;s ability to control those elements, so the border effects happen INSIDE the chrome of the rounded corners and glow when active. Annoying, that. It shouldn&#039;t work the same way with an image (type=&quot;button&quot; or type=&quot;image&quot;), but I haven&#039;t tried it.&lt;/p&gt;
 </description>
     <pubDate>Wed, 11 Dec 2002 02:45:05 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1121188 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
