Closed (fixed)
Project:
Sky
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
25 Sep 2008 at 00:26 UTC
Updated:
27 Jan 2009 at 16:26 UTC
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
Comment #1
jacineI think line 431 in style.css is what you are looking for:
Try setting the padding to 0.
Comment #2
jugney commentedThank you!
Comment #3
jacinenp :)
Comment #4
dishwalla commentedstyles.css? Which file is that?
Comment #5
dishwalla commentedOh, I see this post was theme related...
I was wondering how to get rid of the arrow space in Nice Menus
Comment #6
jacineComment #7
ndstate07 commentedHello,
You dont actually descibe what to do to remove the arrow? What is removed in the CSS?
Thanks!
Comment #8
aimutch commentedndstate,
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.
Comment #9
aimutch commentedComment #10
jacineThanks for the detailed response aimutch!
Closing this...