Views Exposed filter label


Author Message
Gerry

Posted: 4/30/2010
Quote message 

I am using Artisteer 2.4.0.24559 Standard Edition with Drupal 6 (latest) and views-6.x-2.10.tar

When I expose a views filter there is no "Apply" label on the filter button. The button works OK with the Garland theme. Also I did not have this problem with older versions of Artisteer.

Is this a bug?
 
Chris

Posted: 5/4/2010
Quote message 

that is not a but, but views module has it own css located here : http://www.yoursite.com/sites/all/modules/views/css/views-admin.css

You can check this problem using firebug, and found :

form#views-ui-preview-form input#preview-submit {
margin:1.7em 0 0;
}

Override the css style with:

form#views-ui-preview-form input#preview-submit {
margin:0;
}

 
Gerry

Posted: 5/5/2010
Quote message 

I made the above suggested changes, flushed all caches, including views cache but there is no label on the button. Everything works fine with the Garland theme and other themes that ship with Drupal.

On checking with firebug in this part of the css file in /sites/all/default/files/css

specifically
.views-exposed-form .views-exposed-widget .form-submit {
margin-top:1.6em;

When I change the 1.6em to 0 the label appears.

Any ideas?

Thanks
 
Oriol

Posted: 5/9/2010
Quote message 

I have the same problem

When I expose a views filter there is no "Apply" label on the filter button.
 
Nitish

Posted: 9/23/2010
Quote message 

.views-exposed-widget .form-submit {
margin-top:0em;
}

That should fix it
 
cruze72

Posted: 1/5/2011
Quote message 

Tried the workaround above with no joy.

Has anyone figured out how to do this yet?