Opened 4 years ago
Closed 17 months ago
#8662 closed defect (bug) (wontfix)
white space found in responsive
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | BuddyPress.org Sites | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | BuddyPress.org Sites | 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.
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 !