0
votes
2answers
879 views
Style form elements in Zend Framework with a default style
I'm currently styling form elements with a custom CSS class to style text inputs differently, as in:
$submit = new Zend_Form_Element_Submit('login');
$submit->setLabel('Log in')
…
9
votes
How to see the print media CSS in Firebug?
What about Web Developer Toolbar? https://addons.mozilla.org/en-US/firefox/addon/60 , when installed go to CSS -> Display CSS by media type -> Print
…
1
vote
how to position a div in the center and hide it?
Is this what you want? Note the CSS comment. It's important to get the div centered. The "trick" that make the float above the other parts of your site, is position: absolute.
…
