The little CONFIGURE box that pops up

Branjawn's picture

OK, for some reason, the configure 'thing' (someone give me a better word) that appears when logged in as an admin when you hover over certain objects is taking over. The block for the configure is overlapping content I need to click on! Specifically Panels.

When I say configure, let me clarify that the link will look something like this:
mysite.com/admin/build/block/configure/...

So, options here:
1) Don't use panels
2) Find a proper solution (unlikely)
3) Disable the 'configure' thingy (can't find how to)

I did find a page that said to uncheck "Show block editing on hover", but I cannot find that option anywhere. Supposedly it is in themes, but I looked under All themes and the specific theme and found at neither place.

Ideas?

p.s. I'm ONLY using panels because I just got this site "job" yesterday and it has to be up and live by Saturday night. I don't have time to do all the CSS that would be needed to do this properly.

Groups:
Login to post comments

Found it, maybe

Branjawn's picture
Branjawn - Thu, 2009-09-17 16:39

OK, I got out of my comfort zone and popped open template.php (in a subtheme) and found a section commented as: "Display 'configure' for other blocks"

I commented everything relating to that out, will see if that works...


you can probably do some

Sheena Donnelly's picture
Sheena Donnelly - Sat, 2009-09-19 20:43

you can probably do some simple CSS overrides to make that go away. inspect source using Firebug and find the div that wraps those buttons, node the unique class or ID associated with it, and try adding something like this to your style.css file:

div.whatever div.links a:hover{display: none;}