GeekedOut
GeekedOut

Reputation: 17185

Why does page extend all the way across the screen?

I set the width of my page to a certain size. Some pages follow this like the home page: http://www.problemio.com but for some reason, other pages just extend the entire width like this page: http://www.problemio.com/community/public_member_profile.php?member_id=1

I don't see any difference between them in firebug. Does anyone else understand why the pages have different width?

Thanks!!

Upvotes: 0

Views: 101

Answers (1)

P.Brian.Mackey
P.Brian.Mackey

Reputation: 44275

The first link is constrained by the parent div

<div class="container">

The second link is not as the container element does not exist.

Upvotes: 3

Related Questions