I have a question about a block in my sidebar, i cant seem to get the (1) or (2) next to the name.
There is room enough, because i got a name with almost 20 chars in my menu above.
I use Faceted Search for makeing this menu.

here is a printscreen of my problem:
http://users.telenet.be/warchucky/Naamloos.jpg

please help me, i dont know where i have to change something.

Comments

warchucky’s picture

it seems to be in order when i put standard drupal theme up, when i use Drupify theme it gets screwed

s.daniel’s picture

This seems like some custom css rule needs to be written. However it is hard to say and impossible to solve without having access to the site. Could you give an url?

You find me on IRC in #drupal if I should take a look at the site.

warchucky’s picture

http://www.studond.be/

this is my site with the problem

s.daniel’s picture

Adding this to your style sheet [1] should fix the problem i think

.faceted-search-facet ul li a {
display: inline !important;
line-height:25px
}

This is the style that is messing up your layout:
.sidebar ul li a {
background:transparent url(images/menu-bullet.png) no-repeat scroll 0pt;
display:block;
margin-bottom:3px;
padding:4px 0pt 2px 28px;
}

It is ment for menus in the sidebar I guess so I wouldn't remove it.
You can find the styles of an element easily using firebug for firefox.

Hope that helps.

Cheers
Sebastian

ps: Was afk for a few minutes in irc ;)

[1] http://www.studond.be/sites/all/themes/drupify/style.css