Hi folks,

i have a pretty simple question. Is it possible to disable the block-config-menus/views-admin-menus in the frontend view? They are really annoying in the development-time when you have tiny little blocks or menus which you cannot click because everytime the edit-menu shows up.

Is there an option or a hack to fix this?

Thank you and best regards

Stefan

Comments

tammo’s picture

div.view div.views-admin-links-hover a,
div.view div.views-admin-links:hover a
{
display:none;
}

should do the trick.

Tools for Research
http://www.toolsforresearch.com (international)
http://www.kleinestappen.nl (NL)

All using open source software: Drupal, Limesurvey

leepowers’s picture

The following CSS code worked for me to remove the annoying views admin mouseover options:

.block div.view div.views-admin-links {
	display: none;
}
rcco’s picture

I had the same problem, and found an easier way to do it.
Just go to Administer----> Site building---> Views---> Tools,
by "Basic" scroll down and check mark..."Do not show hover links over views". save configuration and your done.