Opened 15 years ago
Closed 15 years ago
#1799 closed defect (bug) (fixed)
Profile - Edit(HAS PATCH)
Reported by: | Ezd | Owned by: | |
---|---|---|---|
Milestone: | 1.2 | Priority: | minor |
Severity: | Version: | ||
Component: | Keywords: | needs-testing has-patch | |
Cc: | DennisSmolek |
Description
When you edit your profile and you don't fill out all the "required" fields you get a red bar notification. This bar is being overlayed by your profile picture, see attached screenshot.
Also, it's hard to see what boxes is required and which isn't. Maybe these textfields should be marked with a * and a text saying required?
Attachments (5)
Change History (13)
#2
@
15 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
It looks like there's still a problem here. Tested with IE this time. See attached screenshot.
#3
@
15 years ago
Its not just in Profile - Edit. Same issue in Profile - Change Avatar page. Please see new attached screenshot.
#4
@
15 years ago
This seems like a Z index issue in the CSS for the image and the alert bar. adding something like:
z-index: 1000;
should fix it and make (most) stuff go under the bar..
#5
@
15 years ago
- Cc DennisSmolek added
- Summary changed from Profile - Edit to Profile - Edit(HAS PATCH)
Ok I was wrong, but to fix this do this:
Edit default.css in wpcontent/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css
Line 620
div#message.error p {
background: #e41717;
color: #fff;
border-color: #a71a1a;
clear:both;
}
because all the other elements are floating(including the avatar) they float over each other based upon hierarchy in the parent DIV regardless of z-index. Adding clear:left; or clear:both; fixes this.. uploading image to confirm
(In [2584]) Fixes #1799