Hey everyone! I'm new to Drupal and have just got the Marienelli theme up and running. I'm trying to get the blue menu tabs closer together, so that they look like one block.

Anyone know where/how to do this? I've been searching through the CSSs like crazy trying to figure it out.

Thanks for your input!

Comments

Deepika.chavan’s picture

Hi,
Try adding following CSS to your theme's "style.css" file , if it doesn't exist you can create one and add following line of code in your theme's "marinelli.info" file.
Code to be added in marinelli.info :

stylesheets[all][] = style.css

Code to be added in style.css :

ul.menu li {
  margin:0 0 0 0;
}

li.leaf {
  list-style-image:url(../../misc/menu-leaf.png);
  list-style-type:square;
  margin:0;
  padding:0.2em 0 0;
}

I hope this will help you to solve your problem.

Rgrds,
Deepika Chavan.

oadaeh’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

This issue is being closed because it is against a branch for a version of Drupal that is no longer supported.
If you feel that this issue is still valid, feel free to re-open and update it (and any possible patch) to work with the 7.x-4.x branch.
Thank you.