Opened 3 years ago
Closed 20 months ago
#8878 closed defect (bug) (wontfix)
spacing issue in responsive
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | BuddyPress.org Sites | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | Core | Keywords: | has-screenshots changes-requested has-patch needs-refresh |
| Cc: |
Description
In responsive, the log-in text has a spacing issue.
URL: https://buddypress.org/about/
For better understanding, I provide the Screenshot.
Thanks.
Attachments (4)
Change History (12)
#3
@
3 years ago
- Keywords changes-requested has-patch added; needs-patch removed
@himshekhar07
I appreciate your efforts but this is removing the bottom padding and looks odd.
you can try this with the below solution
@media screen and (max-width: 782px){
#wpadminbar #wp-toolbar li#wp-admin-bar-bp-login a, #wpadminbar #wp-toolbar li#wp-admin-bar-bp-register a {
padding: 5px 8px;
}
#6
@
3 years ago
Thank you @mikinc860 for the suggestion but without adding any new selector we can try this:
you can try this with the below solution
@media screen and (max-width: 782px) {
#wpadminbar li#wp-admin-bar-bp-login a,
#wpadminbar li#wp-admin-bar-bp-register a {padding: 5px 8px !important;}
}
Note: See
TracTickets for help on using
tickets.

Patch added