Skip to:
Content

BuddyPress.org

Opened 14 years ago

Closed 14 years ago

#1893 closed defect (bug) (fixed)

width problem on activity page : view an activity

Reported by: ikkeook's profile 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)

error.jpg (162.3 KB) - added by ikkeook 14 years ago.

Download all attachments as: .zip

Change History (7)

#1 @apeatling
14 years ago

  • Resolution set to invalid
  • Status changed from new to closed

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.

@ikkeook
14 years ago

#2 @ikkeook
14 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 @erich73
14 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 @ikkeook
14 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.

#5 @apeatling
14 years ago

The permalink pages have a fixed width, this is intentional and not a bug. The admin bar being the incorrect size is a bug.

#6 @apeatling
14 years ago

  • Resolution set to fixed
  • Status changed from reopened to closed

(In [2670]) Fixes #1893

Note: See TracTickets for help on using tickets.