Tell me more ×
Drupal Answers is a question and answer site for Drupal developers and administrators. It's 100% free, no registration required.

system.menus.css has it's own styles for the menu block. How can I override this style?

Would creating a folder called CSS in my theme and adding a file system.menus.css override it?

share|improve this question
This question has already been answered here: drupal.stackexchange.com/questions/15853/… – Alfred Armstrong Mar 21 at 10:07

2 Answers

up vote 0 down vote accepted

add your css file through your themes's .info file

stylesheets[all][] = myStyle.css

share|improve this answer
if i add here the name system.menus.css - will it be overrided? – Hello Mar 21 at 8:25
no. make it unique name – monymirza Mar 21 at 8:26
so it looks like i need to override it manually writing the same class and override styles... – Hello Mar 21 at 8:26
yes i think it will help – monymirza Mar 21 at 8:27

You can not override css just by making a file with the same name. If you implement a theme you can for instance use the custom.css or navigation.css (in genesis theme) to override styles from the system.menu.css. If for instance someting has a border of 2px and you want no border you can add to the style .class { boder:0 none; }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.