Project:Imagemenu
Version:6.x-1.0
Component:User interface
Category:support request
Priority:normal
Assigned:thinkcloud
Status:closed (fixed)

Issue Summary

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

#1

Last release have its own css file. See it and uncomment there the code that you've stated above

#2

I 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.

#3

.imagemenu .leaf {
background: none;
list-style:none;
}

works for me :)

#4

Edited: Problem was theme related.

#5

I 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.

#6

Status:active» closed (fixed)

#7

There are lines of code missing from hook_block in imagemenu.module

Add:

<?php
  $modulepath
= drupal_get_path('module', 'imagemenu');
 
drupal_add_css($modulepath . '/imagemenu.css');
?>

at the start of hook_block, about line 200.

#8

Spot on glennz! Combination of posts #3 and #7 works for me. No need to tamper with theme's style sheet...