Opened 15 years ago
Closed 15 years ago
#1893 closed defect (bug) (fixed)
width problem on activity page : view an activity
Reported by: | ikkeook | Owned by: | |
---|---|---|---|
Milestone: | 1.2 | Priority: | minor |
Severity: | Version: | ||
Component: | Keywords: | css width problem | |
Cc: |
Description
when you go to a view in activity page (URL something like :
http://domain.com/members/admin/activity/1/ ) the page width is set to 960px. This is always : 1250px
This by using default.css (line18)
body.activity-permalink {
max-width:960px;
min-width:960px;
}
TO SOLVE the problem: UPDATE CSS to max-width:1250px;
Attachments (1)
Change History (7)
#2
@
15 years ago
- Resolution invalid deleted
- Status changed from closed to reopened
hi,
check picture please. All pages on site have width:1250px. This is also the width of the top menu bar. Only pages like http://domain.com/members/admin/activity/1/ have a width of 960px.
So this must be an error.
greetings.
#3
@
15 years ago
it is not about changing the width or length of any text or changing the width of the page itself.
Just change the width of the header-image, so that it will show the header-image in its full width. Just make the HEADER the same as at the homepage of testbp.org
As it shows currently, it kinda looks "un-finished" and not professional.
#4
@
15 years ago
ok, Once more: this needs to be an error. This happens ALSO on the official test site:
Go to: http://testbp.org/ > width : 1250px (default.css (line 6))
body {
background:#EAEAEA url(../images/background.gif) repeat-x scroll left top;
color:#555555;
font-family:Arial,Tahoma,Verdana,sans-serif;
font-size:12px;
line-height:170%;
margin:0 auto;
max-width:1250px;
min-width:960px;
padding-top:0 !important;
width:90%;
}
ALL pages on testbp.org have the same width, ONLY some don't!! Check this out:
http://testbp.org/members/medaniff/activity/65721/
http://testbp.org/members/nehalem2009/activity/65718/
http://testbp.org/members/ligar/activity/65700/
and so on.
The reason of this is the use of the class activity-permalink in the body definition:
<body id="bp-default" class="activity my-activity activity-permalink 65700">
AND this class activity-permalink is only used on those kind of pages. And it has nothing to do with some permalink, I guess.
The permalink pages need to be restricted so the text line length does not become too long. This is how it's supposed to be. Override in a child theme if you want to change it.