Closed (fixed)
Project:
Imagemenu
Version:
6.x-1.0
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
25 May 2008 at 19:14 UTC
Updated:
9 Dec 2011 at 04:32 UTC
I'm trying to get rid of the bullet points that automatically appear before my image menu items. I know I have to add the following command
.imagemenu .leaf {
/*background: none;*/
}
.imagemenu .expanded {
/*background: none;*/
}
.imagemenu .collapsed {
/*background: none;*/
}
to my stylesheet, but the question is which stylesheet? I'm using the Artists C01 theme, and there's a whole spade of stylesheets to choose from.
Comments
Comment #1
kayukoff commentedLast release have its own css file. See it and uncomment there the code that you've stated above
Comment #2
Dustnite commentedI uncommented the CSS code and put it in my theme's style.css but it's not doing the trick. I still get the bulletpoints.
Comment #3
minus commented.imagemenu .leaf {
background: none;
list-style:none;
}
works for me :)
Comment #4
seboj commentedEdited: Problem was theme related.
Comment #5
fasmith718 commentedI recently tried the solutions to the bullet display issue that have been offered in this file. I tried both uncommenting the code in the imagemenu css file and adding "list-style: none;" to each section as well. Neither method worked.
My procedure was to turn off the module, update the css file, and then reenable the module.
I am using:
Drupal 6.4
FF 3.0.3
Theme: LiteJazz 6.x-1.7
Any help you guys could give me would be greatly appreciated.
Comment #6
marcus_clements commentedComment #7
glennnz commentedThere are lines of code missing from hook_block in imagemenu.module
Add:
at the start of hook_block, about line 200.
Comment #8
vvuong74 commentedSpot on glennz! Combination of posts #3 and #7 works for me. No need to tamper with theme's style sheet...