-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Highlight does not work with divs #84
Comments
Highlight works by adding a class "guiders_highlight" to the div, giving it Have you tried a few things:
If there is a bug, I suspect it is something along the lines of "the div is Jeff Pickhardt On Thu, Jan 17, 2013 at 6:48 PM, Douglas Tarr [email protected]:
|
I agree that there is a bug. I don't know exactly how to solve it, though. I've replicated it: perhaps your div doesn't have a background color? I've found that added a bg color helped me, when I replicated it. |
Thanks @pickhardt. I ran into a similar issue when the div did not have a background color. Adding a background color makes the div look much better. |
Also stumbled across that issue, setting a white background works fine for my case. For a cleaner solution, you could lay a white highlighting-backdrop under the element to highlight, so that z-order(backdrop) < z-order(white background) < z-order(highlighted element), Tricky thing is to put the white background into the same position and size as the element. Bootstrap-tour does this, see https://github.com/sorich87/bootstrap-tour for an example. |
Sometimes it's just a z-index annoyance and changing the background color isn't enough. Make sure to set your highlighted element's position to "relative" |
I'm using guiders with the highlight option. It appears to highlight input elements, but not divs. I've verified that it is applying the guiders_highlight class to the element. But it appears to not actually highlight anything.
Is there any way to get highlight to work with divs?
The text was updated successfully, but these errors were encountered: