Opened 4 years ago
Closed 2 years ago
#8662 closed defect (bug) (wontfix)
white space found in responsive
| Reported by: | kajalgohel | Owned by: | johnjamesjacoby |
|---|---|---|---|
| Priority: | normal | Milestone: | BuddyPress.org Sites |
| Component: | BuddyPress.org Sites | Version: | |
| Severity: | normal | Keywords: | needs-patch has-screenshots |
| Cc: |
Description
In responsive (768px and below), white space found in the right side of below page.
https://buddypress.org/download/
for better understanding I provide the screenshot.
Attachments (3)
Change History (8)
#3
@
4 years ago
Hello @kajalgohel and @aezazshekh for the contribution, but I think instead of applying the new CSS we can change the existing CSS.
.syntaxhighlighter {
max-width: 100%;
margin: 1em 0 1em 0 !important;
position: relative !important;
overflow: auto !important;
overflow-y: hidden !important;
font-size: 1em !important;
padding: 0.5em 1em !important;
}
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Hello @kajalgohel
Adding the below CSS code to this file will solve the design issue.
file-path => /wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css
@media screen and ( max-width: 782px ) { .syntaxhighlighter { width: auto !important; } }Than you !