Tweaking stylesheets
Worked for a while on the three different stylesheets, in an attempt to solve the problem of the search <fieldset>
, which often wraps in an ugly way. The issue is caused by the div.Content
selector, which has max-width: 50em
. This is supplied in order to restrict the width of content on the page, in an attempt to prevent lines from becoming unreadably long when the screen is wide. However, the search <fieldset>
is a child of this <div>
, and is therefore restricted by it. The best option we could come up with that helps the search page layout without breaking the main site layout is to add white-space: nowrap
to the fieldset
selector's style. This works great for Firefox and Opera, but IE predictably ignores it. We'll probably have to revisit this.