Opened 3 years ago
Closed 2 years ago
#8903 closed defect (bug) (wontfix)
Content overlaps issue on mobile device
| Reported by: | pitamdey | Owned by: | johnjamesjacoby |
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | BuddyPress.org Sites | Version: | |
| Severity: | normal | Keywords: | |
| Cc: |
Description
URL : https://codex.buddypress.org/
In Responsive the screen below 500px the content overlaps on each other
Attachments (2)
Change History (5)
#1
@
3 years ago
I think we can add class to the Component, Version, Type and Context instead of applying inline css and then apply width according to the media query as the media query above 500px the width should be same i.e. 24% but after that it should be 50% that will make the design proper in responsive
something like this :
.class{
width: 24%
}
@media only screen and (max-width: 600px) {
.class{
width: 50%
}
}
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Screenshot for better understanding