I enabled a Block on the front page that lists node titles as links.

The Views links to "edit-export-clone" the View are displaying too close to the top of the first node title in the Block. The first node title cannot be clicked. When I roll the mouse over the title all I can activate are the Views links.

Ashford

Comments

smacphail’s picture

You can turn off those links by going to the "Tools" tab in Views (yoursite.com/admin/build/views/tools) and select the checkbox "Do not show hover links over views". Otherwise, if you want to keep the links, you'll need to do some CSS work so that those links show up in a different position. (I'm not sure what the CSS class/id will be, but if you use Firefox/Firebug, you can dig in, find that div with the links, and then use some CSS to change its location)

smacphail’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

yesct’s picture

My css already had absolute, so I added
left: 100px;

And then I could keep the edit export clone links and still click on the first node title in the list.

I added this to my local.css file in my theme:

div.view div.views-hide-hover,
div.view:hover div.views-hide {
    left: 100px;
}