Thanks so much for the theme! I especially like the dropdown buttons!

I'd like to display the menus without the drop down arrow graphics, and I managed to remove the css section that inserted those images. However, the blank space is still there. How do I remove this space so that the menu items that drop down don't have this extra space on the right?

Comments

jacine’s picture

I think line 431 in style.css is what you are looking for:

#navigation li.expanded  {
  padding-right: .65em;
  background-image: none;
}

Try setting the padding to 0.

#navigation li.expanded  {
  padding-right: 0;
  background-image: none;
}
jugney’s picture

Status: Active » Fixed

Thank you!

jacine’s picture

np :)

dishwalla’s picture

styles.css? Which file is that?

dishwalla’s picture

Oh, I see this post was theme related...
I was wondering how to get rid of the arrow space in Nice Menus

jacine’s picture

Status: Fixed » Closed (fixed)
ndstate07’s picture

Status: Closed (fixed) » Active

Hello,

You dont actually descibe what to do to remove the arrow? What is removed in the CSS?

Thanks!

aimutch’s picture

ndstate,

The arrows are added via CSS in the css/appearances.css file. In that file, comment out any instances of the arrow graphics that you don't want to appear.

To remove arrows from Primary Links:

/* Icons */
#navigation li.expanded a {
/* background: transparent url('../images/icons/bullet_arrow_down.gif') no-repeat center right; */
}

#navigation li.expanded li.expanded a {
/* background: transparent url('../images/icons/bullet_arrow_right.gif') no-repeat center right; */
}

To remove arrows from the Sidebar menus:

/* Level 1 */
.sidebar ul.menu li.expanded a {
/* background-image: url('../images/icons/bullet_arrow_up.gif'); */
background-repeat: no-repeat;
text-indent: 20px!important;
background-position: 5px 50%;
}

.sidebar ul.menu li.collapsed a {
/* background-image: url('../images/icons/bullet_arrow_down.gif'); */
background-repeat: no-repeat;
text-indent: 20px!important;
background-position: 5px 50%;
}

You can add or remove some or all of the arrows.

aimutch’s picture

Assigned: Unassigned » aimutch
jacine’s picture

Status: Active » Closed (fixed)

Thanks for the detailed response aimutch!

Closing this...