See screenshot.
The dropdown is hidden behind the footer section (see very bottom of dropdown). I'm not seeing a CSS problem.
Thanks
See screenshot.
The dropdown is hidden behind the footer section (see very bottom of dropdown). I'm not seeing a CSS problem.
Thanks
I can't really tell anything from a screenshot without inspecting the page styles. If you'd like to share a link, I'll be happy to take a look for you.
Hi Kevin,
Unfortunately, this is on local dev. I can upload it and send you a link, but this might not be until tomorrow. I'll post when it is there.
Thanks
Sounds good. I'm sure it's some sort of z-index issue but I can't tell you anything more than that until I see it. Just ping me when you've got a URL and I'll look at it ASAP.
Hi there,
have the same issue. Was it solved?
@sascha, please post a link to your site where this is happening.
Hi Chris,
for instance here: http://landwire.de/add-job/
Good one. Thank you for sharing the URL. I will let Kevin know and see what he comes up with.
Chris,
thanks. That would be great!
I tried a few CSS tweaks with firebug, but could not get it sorted - (but that does not mean much!!!).
Anyway, looking forward to see it fixed,
Sascha
Hi Chris,
has Kevin or anyone else had time to look into this issue?
S
Hello,
I'm having the same issue. I'm also working locally so i can't give a link.
Thank you,
Tony
If I change the .gform_wrapper from "overflow: inherit" to "visible" it works. The only problem is I can change it in firebug, but I can't change it in my css settings.
I tried using .gform_wrapper and body #gform_wrapper_2 and they didn't do anything. I ended up having to set the parent container to "visible", but I would prefer to set it on the gform wrapper specifically.
Can someone help me with the css?
Tony, when you say you can't change it in your CSS settings - why is that? Do you mean when you place declarations in your stylesheet they are being ignored? Since we are flying blind over here this could be a lot of back and forth. Do you have an ETA of when this would be publicly viewable?
Hi Rob,
sorry for the delay! Yes, when I placed the above changes to my CSS file, they did not take priority so nothing changed. If i made the change directly in firebug it changed ok...
it was currently set for "inherit" so I made the change to the parent div and it worked. I don't think it will be a problem here, but if i can apply it directly instead of on the parent i would prefer to do that.
the site won't be live for 1 - 2 weeks...i'm happy to post then if you'd like. thank you!
If the CSS you added did not visibly change the display, try adding !important to the declaration. That will ensure that it overrides all other rules. Example
[css]
#gform_wrapper input[type=text] {
color: #000!important;
font-size: 18px!important;
}
The important on the end of those rules will ensure that rule takes precedence over any other more specific rule that is not working for you. (and the font will be 18px black)
Hi there,
so is this an issue with GF that will be sorted out in one of the next updates or is this a conflict within my setup/theme?
I will give Tony's CSS change a go in the meantime...