I installed the mysite module and at a users submitted content where the link to that users MY SITE shows beneath their content, when you hover the link a Box appears with things to add to your profile page, HOWEVER!! this box is to faraway and unless you drag just right you cant drag in to the box?

Thanks

Jimmy

Comments

agentrickard’s picture

Title: Dragging from global mysite links, pop up box is to far away, and box closes???? » Mysite links pop-up box issues

Notes: New release is 5.x.2.15

This is likely a css behavior -- check mysite_links.css.

For debugging, I need to know:

- What OS?
- What browser?

If you're on Windows, you may need to provide some debugging support, since I only test on Mac.

Screenshots would help, as would any changes that you made to the mysite_links.css file to fix this issue.

ThriLLz’s picture

i had the same problem 5 minutes ago :-)

ive just changed this line in the mysite_links.css

#mysite-links ul.display {
background-color: #fed;
padding: 0px 10px 10px 10px;
border: 1px solid #ba9;
margin-left: 0.75em;

to:

#mysite-links ul.display {
background-color: #fed;
padding: 0px 10px 10px 10px;
border: 1px solid #ba9;
margin-left: 0.75px;

now it works tottaly fine and smooth. margin-left: 0.75em; was a bit too much space so ive changed it to pixel.

maybe this can help you out.

greetings
dorian

EDIT:// im on windows... just besides... tested in firefox (newest) and iexplorer because both had the same failure...

____
www.kukljica.org

agentrickard’s picture

Version: 5.x-2.11 » 5.x-2.15
Priority: Critical » Minor

dorian-

Thanks for the details. I'll take a look.

agentrickard’s picture

Status: Active » Fixed

Not sure why the em measurements would cause PCs to wack out. But changing this to a px value seems harmless.

New code is:

#mysite-links ul.display { 
  background-color: #fed; 
  padding: 0px 10px 10px 10px; 
  border: 1px solid #ba9; 
  margin-left: 4px;
}

Will be released as part of 5.x.3.

Thanks.

ThriLLz’s picture

no problem!
it was just a bit to far away (1-2 pixel)

agentrickard’s picture

Status: Fixed » Postponed (maintainer needs more info)

Well, is 4px too far?

ThriLLz’s picture

#mysite-links ul.display {
background-color: #fed;
padding: 0px 10px 10px 10px;
border: 1px solid #ba9;
margin-left: 0.75px;

this works perfectly...

4px would be to far i think the menu jumps off then

agentrickard’s picture

Status: Postponed (maintainer needs more info) » Reviewed & tested by the community

OK. I'll set it to 1px in the release. Don't like fractions of pixels...

agentrickard’s picture

Status: Reviewed & tested by the community » Closed (fixed)

Committed to HEAD and 5--2.