Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2005
    Posts
    27
    Plugin Contributions
    0

    Default CSS search button text

    I'm working on my site (http://mystikalscents.com/index.php) and I noticed that if I load the page, the test on the search button is white. If I touch it with my cursor, and move off it, it changes to #e8b6eb -- I'm sure this is a setting in css (a.mrk:hover maybe?) but I can't find it.

    Can anyone tell me why it's doing this? Everything else seems OK.

    Thanks in advance for the help!

  2. #2
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: CSS search button text

    Not quite that simple.

    When you use css buttons some javascript is added to the button. In this case the javascript adds a class when the hover happens and then removes the class when the hover stops.

    Except in your case the class is not being removed because there is an error in the javascript.

    To be brutally honest I can't be bothered to track down why but here is a work around. In your file stylesheet_css_buttons.css you find this line:

    Code:
    .cssButtonHover {
    color: #e8b6eb;
    border-style: inset;
    text-decoration: none;
    }
    and change it to:

    Code:
    .cssButtonHover {
    color: white;
    border-style: inset;
    text-decoration: none;
    }
    You won't have solved the javascript error but it will look better.

 

 

Similar Threads

  1. CSS Buttons Excluding Search Button?
    By Inxie in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 14 Mar 2013, 05:51 PM
  2. How can I make the Header Search button be a CSS button?
    By makehveli in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 26 Aug 2011, 03:01 AM
  3. top search text box and search button not vertically aligned
    By HeyIts007 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 16 Oct 2010, 05:29 AM
  4. Search (and submit) CSS button
    By scrap in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 26 Jan 2010, 01:17 PM

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