By ludo1960 on
Hello,
I have a custom block which includes a php file with it's own independant CSS file. When I use Firebug to view it, I have an unwanted
entry from the systems-menu.css
.block ul {system-menus.css?m (line 47)
margin:0;
padding:0 0 0.25em 1em;
}
Any ideas how I override this?
TYIA
Comments
Bump
Anyone?
1. copy the file
1. copy the file [modules/system/system-menus.css] into your [your-theme-name] directory
2. make the reference to the css in [your-theme-name.info] file:
stylesheets[all][] = system-menus.css
3. modify the file [your-theme-name/system-menus.css] the way you want.
http://api.drupal.org/api/function/drupal_get_css/6
Thanks
Thank you very much, It works a treat.